<%@ Page Inherits="MyCodeBehind" Src="SimpleCodeBehind.vb" %>
<html>
<head><title>Simple Code-Behind Page</title></head>
<body>
Please enter your name then click the button below:<br /> <br />
<form action="CodeBehind1.aspx" Method="Post" Runat="Server">
<asp:textbox id="name" runat="Server" />
<asp:button text="ClickMe!" OnClick="SubmitBtn_Click" runat="server" />
<br /><br />
<asp:label id="message" runat="Server" />
</form>
</body>
</html>
<%--
Imports System
Imports System.Web.UI
Imports System.Web.UI.WebControls
Public Class MyCodeBehind : Inherits Page
Public Name as Textbox
Public Message as Label
Public Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
Message.text = "Hello " & Name.Text
End Sub
End Class
--%>