i need help from u guys here. So, on my system, there are 2 roles. Admin and users. I use login control to enable them to login to the system. How can i make these two roles redirect to different page? I am using membership and form authentication. I would appreciate if you could give some help to me. Thank you :)

link|improve this question

67% accept rate
welcome to stackoverflow :) – Ravi Feb 23 at 3:42
`LoginView' control can do this job and no need to write a code. – nuux Feb 23 at 4:23
Login view is typically to show different views on the same page based on logged in status and/or role. It's a little different than the posed question where the task is to go to a different page. – swannee Feb 23 at 4:38
Ok, after doing some ulteration, finally my coding works. will post the solution very soon. :) Thank you everyone! – Who Me Feb 23 at 4:50
feedback

2 Answers

Handle the Login controls "OnLoggedIn" event. In this event, determine the current users role. That can be done as follows ("LoginUser" below represents your login control):

string[] userRole = Roles.GetRolesForUser(LoginUser.UserName);

http://msdn.microsoft.com/en-us/library/system.web.security.roleprincipal.getroles%28v=vs.100%29.aspx

Then use Response.Redirect based on the role to send them to the correct destination.

link|improve this answer
Thank you for your answe swannee :) will try it now – Who Me Feb 23 at 3:24
Cool, please check my response as the answer if it works for you. – swannee Feb 23 at 3:29
feedback

I got it right now. The first thing u need to do is, go to event at the properties of the login in control, the double click at loggedIn row, the it will direct you at cs page. Then, what u need to do is

protected void Login1_LoggedIn(object sender, EventArgs e)
{
    {
             if (Roles.IsUserInRole(Login1.UserName, "Admin"))
            Response.Redirect("~/Admin/Default.aspx");
        else if (Roles.IsUserInRole(Login1.UserName, "User"))
            Response.Redirect("~/User/Default.aspx");
    }
}

Then dont forget to set the destination URL of the login control to url that u want user redirect after login

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.