User control: login : Define Control « User Control and Master Page « ASP.Net






User control: login

<%@ Register 
    TagPrefix="My" 
    TagName="LogInControl" 
    Src=".\LogInControl.ascx" 
%>
<script runat=server>
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    If LogIn1.IsValid Then
        lblMessage.Text = "You are logged in!"
    Else
        lblMessage.Text = "User name and password not found!"
    End If
End Sub
</script>
<html>
<BODY  TEXT="black" LINK="darkred" VLINK="darkred" ALINK="red" LEFTMARGIN="40" TOPMARGIN="40">
<form runat="server">
<Font Face="Tahoma">
<My:LogInControl 
    id="LogIn1" 
    runat="server"
    FontName="Arial"
    FontBold=True
/>
<BR>
<asp:Label
    id="lblMessage"
    runat="server"
    Font-Bold="True"
/>
<BR><BR>
<asp:button 
    id="butOK"
    text="OK"
    Type="Submit"
    OnClick="SubmitBtn_Click" 
    runat="server"
/>
</Font>
</form>
</body>
</html>


<%--
<script language="VB" runat="server">
Public ReadOnly Property UserName() As String
    Get
        UserName = txtUserName.Text
    End Get
End Property
Public ReadOnly Property Password() As String
    Get
        Password = txtPassword.Text
    End Get
End Property
Public ReadOnly Property IsValid() As Boolean
    Get
        If txtUserName.Text = "Secret" _
            and txtPassword.Text = "Password" Then
            IsValid = True
        Else
            IsValid = False
        End If
    End Get
End Property
Public Property FontName() As String
    Get
        FontName = lbl1.Font.Name
    End Get
    Set
        lbl1.Font.Name = value
        lbl2.Font.Name = value
    End Set
End Property
Public Property FontBold() As Boolean
    Get
        FontName = lbl1.Font.Bold
    End Get
    Set
        lbl1.Font.Bold = value
        lbl2.Font.Bold = value
    End Set
End Property
</script>
<Table style="font: 10pt verdana;border-width:1;border-style:solid;border-color:black;" cellspacing="15">
<TR>
<TD>
<asp:Label
    id="lbl1"
    runat="server"
    Font-Bold="True"
    Text="User Name: "
/>
</TD>
<TD>
<asp:TextBox 
    id="txtUserName"
    runat=server
/>
</TD>
</TR>
<TR>
<TD>
<asp:Label
    id="lbl2"
    runat="server"
    Font-Bold="True"
    Text="Password: "
/>
</TD>
<TD>
<asp:TextBox 
    id="txtPassword"
    runat=server
    TextMode="Password"
/>
</TD>
</TR>
</Table>

 --%>
           
       








Related examples in the same category

1.Simplest user control (VB.net)
2.Define and use control