Define two page classes in one code behind file : 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 
Define two page classes in one code behind file

<%@ Page 
    language=VB 
    debug=true 
    src="ManyCodeBehind.vb" 
    Inherits="clsMany1CodeBehind" 
%>
<HTML>
<HEAD>
<TITLE>Creating Code-Behind Files Used by Many ASP.NET Pages</TITLE>
</HEAD>
<form runat="server">
<BR><BR>
<asp:label
    id="lblMessage1"
    runat="Server"
/>
<BR><BR>
</form>
</BODY>
</HTML>

<%--
Imports System
Public Class clsMany1CodeBehind
    Inherits System.Web.UI.Page
    Protected WithEvents lblMessage1 As _
        System.Web.UI.WebControls.Label
    Private Sub Page_Init(ByVal sender As System.Object, _
        ByVal e As System.EventArgs)
        lblMessage1.Text = "1"
    End Sub
End Class
Public Class clsMany2CodeBehind
    Inherits System.Web.UI.Page
    Protected WithEvents lblMessage1 As _
        System.Web.UI.WebControls.Label
    Private Sub Page_Init(ByVal sender As System.Object, _
        ByVal e As System.EventArgs)
        lblMessage1.Text = "2"
    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.Code behind with namespace
4.Code Behind In action
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.