I'm new to web development. I have a login.aspx page that has an Asp.Net login control on it. When the users logs in and it successfully authenticates, the page automatically redirects to default.aspx. I assume this is some kind of default behavior?

But, I actually need the login information from the login page in default.aspx.cs. How do I get this information from that context?

In addition, I'm not always going to count on the user successfully logging in with the login control-- If I want to redirect to default.aspx without a login event occurring, how can I do that while also passing the login information being used?

link|improve this question

78% accept rate
What sort of info, specifically, do you need? The username? The roles? That sort of thing? – Cortright Jul 7 '11 at 16:24
feedback

4 Answers

up vote 2 down vote accepted

You can do this sort of thing anywhere in your web app now that the user is authenticated and logged in.

        MembershipUser mu = Membership.GetUser();

        if (mu.PasswordQuestion == null || mu.PasswordQuestion.Length < 3)
        {
            Response.Redirect("~/Account/ChangePasswordQuestion.aspx");
        }
link|improve this answer
feedback

You can call Membership.GetUser() to get the currently-logged-in user.

link|improve this answer
feedback

If you need to get the username only, you can get like..

HttpContext.Current.User.Identity.Name// it will return current logined username

Otherwise you can put the value in session variable and then access it in default page.

link|improve this answer
Okay, wow. Session variables are great. – Jeremy Jul 7 '11 at 16:52
If you want to learn check this article msdn.microsoft.com/en-us/library/ms178581.aspx – Muhammad Akhtar Jul 7 '11 at 16:56
feedback

Use LoginView control

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.