Define two page classes in one code behind file : Code Behind « Development « ASP.Net






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