I have the following code in my asp.net login page:

if (Request.QueryString["ReturnUrl"] != null)
        FormsAuthentication.RedirectFromLoginPage(UserLogin.UserName, UserLogin.RememberMeSet);
    else
        FormsAuthentication.SetAuthCookie(UserLogin.UserName, UserLogin.RememberMeSet);

The scenario I want is:

when the user enters the login page, it will be checked if he has an authentication cookie, and if so, he is automatically redirected to the default page (which is a page that only authenticated users can see).

How can this be achieved ?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Place this in the Page_Init for example...

  if (Request.IsAuthenticated) {
            Response.Redirect(Request.QueryString["ReturnUrl"]);
  }

It'll just bounce the user onwards to the destination if they're logged in.

link|improve this answer
feedback

If the authentication cookie is present and it is valid, the context will be populated with the user data. Just check then if:

public class Login_Page {
   public void Page_Load( ... ) {
      if ( this.Context.User != null && this.Context.User.IsAuthenticated )
        this.Response.Redirect( FormsAuthentication.DefaultUrl );
      }
   }
link|improve this answer
it's FormsAuthentication.DefaultUrl, isn't it ? – user560498 Oct 8 '11 at 19:21
Thanks, my memory has failed me :) – Wiktor Zychla Oct 8 '11 at 19:23
feedback

Your Answer

 
or
required, but never shown

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