Welcome   |   ASP.NET   |   Web Services   |   How Do I...?   |   Class Browser   
  |   Font Size...      

Label1_vb.aspx

<html>
<head>

    <script language="VB" runat="server">

        Sub Button1_Click(sender As Object, e As EventArgs)
            Label1.Text = System.Web.HttpUtility.HtmlEncode(Text1.Text)
        End Sub

    </script>

</head>
<body>

    <h3><font face="Verdana">Label Example</font></h3>

    <form runat="server">

        <asp:Label id="Label1" Text="Label1" Font-Names="Verdana" Font-Size="10pt" Width="200px" BorderStyle="solid" BorderColor="#cccccc" runat="server"/>

        <p>

        <asp:TextBox id="Text1" Text="Copy this text to the label" Width="200px" runat="server" />

        <asp:Button id="Button1" Text="Copy" OnClick="Button1_Click" Runat="server"/>

    </form>

</body>
</html>