I am working on Login Controls i write the below code for logging in
protected void LoginButton_Click(object sender, EventArgs e)
{
string[] UserNameCollection = { "User1", "User2", "User3" };
string[] PasswordCollection = { "password", "password", "password" };
for (int Iterator = 0; Iterator <= UserNameCollection.Length - 1; Iterator++)
{
bool UserNameIsValid = (string.Compare(UserName.Text, UserNameCollection[Iterator], true) == 0);
bool PasswordIsValid = (string.Compare(Password.Text, PasswordCollection[Iterator], false) == 0);
if (UserNameIsValid && PasswordIsValid)
{
FormsAuthentication.RedirectFromLoginPage(UserName.Text, false);
}
}
}
I had my Loginview as follows
<asp:LoginView ID="MasterLoginView" runat="server">
<RoleGroups>
<asp:RoleGroup Roles="administrators,customers">
<ContentTemplate>
{ You are logged in as
<asp:LoginName ID="LoginName1" runat="server" />
} <a href="Default.aspx"></a>
<asp:LoginStatus ID="MasterLoginStatus" runat="server" LogoutAction="Redirect" LogoutPageUrl="~/LoggedOut.aspx" />
</ContentTemplate>
</asp:RoleGroup>
<asp:RoleGroup Roles="demo">
<ContentTemplate>
{ You are logged in as
<asp:LoginName ID="LoginName1" runat="server" />
} <a href="Demo.aspx"></a>
<asp:LoginStatus ID="MasterLoginStatus" runat="server" LogoutAction="Redirect" LogoutPageUrl="~/LoggedOut.aspx" />
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
<LoggedInTemplate>
Welcome:
<asp:LoginName ID="MasterLoginName" runat="server" />
</LoggedInTemplate>
<AnonymousTemplate>
Welcome: Guest.
</AnonymousTemplate>
</asp:LoginView>
So how can i check for the respective role and give access to the particular page