I am developing an application with masterPage.

I want to put loginStatus, LoginName controls into masterPage.

now, I want these loginStatus and LoginName controls be visible only if the user is admin. (admin will exclusively navigate to login page and no Login/logout link, logged in username should be shown for non-admins)

how can I achieve this?

link|improve this question

if (admin) { myControl.Visible = true; } – Justin Satyr Sep 14 '11 at 20:01
feedback

3 Answers

up vote 1 down vote accepted

There is a LoginView, which supports roles:

<asp:LoginView ID="LoginView1" runat="server">
    <RoleGroups>
        <asp:RoleGroup Roles="Admin">

        </asp:RoleGroup>
    </RoleGroups>
</asp:LoginView>
link|improve this answer
feedback

Need to know more about your authentication setup, but if you're using the standard ASP.NET role manager, you should be able to do something like this:

loginControl.Visible = Page.User.IsInRole("Admin"); //or whatever the role is
link|improve this answer
feedback

check the users role

    if (Page.User.IsInRole("admin"))
    {
        loginStatus.Visible = true;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.