<%@ Page Language="vb" Inherits="segunda" src="apoyo/segunda.vb" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>

<title> Segunda página ASP.NET </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="Miliuco">
<meta name="Keywords" content="">
<meta name="Description" content="">
 
<style>
a:link {color: Blue;     font-weight: bold;}
a:visited{color: Purple; font-weight: bold;}
a:hover{color: Red; font-weight: bold;}
body {margin-left: 15px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;     font-size: 10pt;}
table {font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 10pt;}
</style>

</head>
 
<body>
<div align="center">
<table
align="center" border="0" width="550" id="table1">
       <tr>
        <td>
        <p
align="justify">Página sencilla con varios controles Web de tipo etiqueta (<b>asp:label</b>),
        un cuadro de texto (<b>asp:textbox</b>)
        y un botón (<b>asp:button</b>), que forman parte de un formulario
        Web (<b>asp:form</b>). En el código Visual Basic se emplea un bucle <b>For</b>
        en conjunción con código <b>HTML</b> para mostrar el contenido del cuadro de
        texto en distintos tamaños de fuente.<br />
        </td>
    </tr>
</table>
<br />

     <asp:Label id="lbMensaje"
            font-bold="True"
            font-size="22pt"
            forecolor="blue"
            runat="server"
></asp:Label>
     <h3 align="center"><font color="blue">Escribe tu nombre:</font>
     </h3>
     <form runat="server" id="Form1">
       <p>
         <asp:TextBox id="tbMensaje"
            Runat="server"
            Width="102px"
></asp:TextBox>
         <asp:Button id="btEnviar"
            onclick="tbMensaje_Change"
            Runat="server"
            BorderWidth="2px"
            BorderStyle="Solid"
            BackColor="White"
            ForeColor="Black"
            Text="Enviar"
></asp:Button>
       </p>
       <hr style="width: 392px; height: 3px" align="center" size="3" />
       <p></p>
       <p></p>
       <asp:Label id="lbMensaje1"
            runat="server"
></asp:Label>
       <asp:Label id="lbMensaje2"
            runat="server"
            font-bold="True"
            font-size="10pt"
            forecolor="blue"
></asp:Label>
     </form>
     <p>
     <font
face=Verdana Size=2>Ver el archivo <b>aspx</b> <a href="segunda.aspx.htm">segunda.aspx</a></font><br>
     <font face=Verdana Size=2>Ver el archivo de código <b>Visual Basic</b> <a href="segunda.vb.htm">segunda.vb</a></font>
</p>

</div>
</body>
</html>