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

link|improve this question

67% accept rate
May be this article will help you [aspalliance.com/…) – User Aug 10 '11 at 13:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.