1 visualbasic code <%@ Page Language="VB" %>
3 html code <script runat="server">
4 visualbasic code Sub Button1_Click(ByVal sender As Object, _
5 visualbasic code ByVal e As System.EventArgs)
6 visualbasic code Label1.Text = "Welcome, " & TextBox1.Text
7 visualbasic code End Sub
9 html code <head runat="server">
10 html code <title>Basic ASP.NET Web Page</title>
13 html code <form id="form1" runat="server">
14 html code <h1>Welcome to ASP.NET</h1>
15 html code <p>Type your name and click the button.</p>
17 html code <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
18 html code <asp:Button ID="Button1" runat="server"
19 html code Text="Click" OnClick="Button1_Click" />
22 html code <asp:Label ID="Label1" runat="server"></asp:Label>