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

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Development » Code Behind 
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.