Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/03/2005, 09:53
Aki
 
Fecha de Ingreso: noviembre-2003
Mensajes: 24
Antigüedad: 21 años, 4 meses
Puntos: 0
Esta es la página:

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Frames.aspx.vb" Inherits="WebANT.Frames"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>Sistema de ...</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
</HEAD>

<body runat="server">
<form id="formWeb" runat="server">
<asp:label ID=Aviso Runat="server" />
</form>
</body>
</HTML>

y este es el código:

Imports System.Web.UI.WebControls

Public Class Frames
Inherits System.Web.UI.Page

#Region " Web Form Designer Generated Code "

'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

End Sub
Protected WithEvents Label1 As System.Web.UI.WebControls.Label
Protected WithEvents Button1 As System.Web.UI.WebControls.Button

'NOTE: The following placeholder declaration is required by the Web Form Designer.
'Do not delete or move it.
Private designerPlaceholderDeclaration As System.Object

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Aviso.text = "...algun mensaje..."
End Sub
End Class