Code Behind In action : Code Behind « Development « ASP.Net






Code Behind In action

<%@ 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


--%>
           
       








Related examples in the same category

1.Define and use namespace in code behind
2.Call function in code behind
3.Define two page classes in one code behind file
4.Code behind with namespace