Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
can membership providers used without login controls i.e., designing a login website without using login controls and need to check the membership providers??? If so please suggest me how????
I have....
XML
<table align="center">
<tr>
<td>
UserName
</td>
<td>
<asp:TextBox ID="txtUsername" runat="server" Width="150px">
</asp:TextBox>
<asp:RequiredFieldValidator ID="rqrUsername" ControlToValidate="txtUsername" EnableClientScript="true" Text="Please enter User Name!!!" runat="server" >
</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
Password
</td>
<td>
<asp:TextBox ID="txtPassword" runat="server" Width="150px">
</asp:TextBox>
<asp:RequiredFieldValidator ID="rqrPassword" ControlToValidate="txtPassword" EnableClientScript="true" Text="Please enter Password!!!" runat="server" >
</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="btnLogin" runat="server" Text="Log In" OnClick="btnLogin_click"/>
</td>
</tr>
</table>
<table align="center">
<tr>
<td>
NEW USER???
<asp:Button ID="btnSignin" runat="server" Text="Sign IN"
        onclick="btnSignin_Click" />
</td>
</tr>
</table>

this is my code with out login controls....and suggest me the membership provider for username and password
Posted
Updated 28-Sep-12 0:36am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900