FormsAuthentication.SignOut not working

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default FormsAuthentication.SignOut not working

    Hello

    This SignOut code is not working, any ideas? TIA.

    public class logout : System.Web.UI.Page {
    private void Page_Load(object sender, System.EventArgs e) {
    FormsAuthentication.SignOut();
    Response.Redirect ("default.aspx");
    }
    ....
    }

    This is how I logged users on:

    FormsAuthenticationTicket authTicket = new
    FormsAuthenticationTicket(
    1, // version
    email.Text, // user name
    DateTime.Now, // creation
    DateTime.Now.AddMinutes(60),// Expiration
    false, // Persistent
    roles.ToString() );
    string encryptedTicket = FormsAuthentication.Encrypt(authTicket);
    HttpCookie authCookie = new HttpCookie(
    FormsAuthentication.FormsCookieName,encryptedTicke t);
    Response.Cookies.Add(authCookie);
    // Redirect the user to the originally requested page
    Response.Redirect( FormsAuthentication.GetRedirectUrl(
    email.Text, false ));

    Ed West Guest

  2. Similar Questions and Discussions

    1. FormsAuthentication.SignOut() not working.
      In my search to understand ASP.NET security, I went to www.asp.net and was looking at their beginner source code. Here is the link to the code that I...
    2. formsAuthentication.Signout() not working ?? ANYONE KNOW THE ANSWER
      I am using forms authentication in my apps. Every page I added: Me.Response.Expires = 0 Me.Response.Cache.SetCacheability...
    3. formsauthentication.signout not working too good
      how do i not let the user go back after he/she signs out of my web app? i'm using formsauthentication.signout with cookies but the user is still...
    4. FormsAuthentication.signout does not ??
      I am using forms authentication to secure my pages. For my logout, I created a logout page with FormsAuthentication.signout is called at the...
    5. FormsAuthentication.SignOut not working within subfolder
      I'm using forms authentication to protect a subfolder within my site. I've got it working fine except for two issues: (1) When I do a...
  3. #2

    Default FormsAuthentication.SignOut not working

    Hello

    This SignOut code is not working, people are still logged in after it
    redirects to default.aspx. any ideas? Thanks.

    public class logout : System.Web.UI.Page {
    private void Page_Load(object sender, System.EventArgs e) {
    FormsAuthentication.SignOut();
    Response.Redirect ("default.aspx");
    }
    ....
    }

    This is how I logged users on:

    FormsAuthenticationTicket authTicket = new
    FormsAuthenticationTicket(
    1, // version
    email.Text, // user name
    DateTime.Now, // creation
    DateTime.Now.AddMinutes(60),// Expiration
    false, // Persistent
    roles.ToString() );
    string encryptedTicket = FormsAuthentication.Encrypt(authTicket);
    HttpCookie authCookie = new HttpCookie(
    FormsAuthentication.FormsCookieName,encryptedTicke t);
    Response.Cookies.Add(authCookie);
    // Redirect the user to the originally requested page
    Response.Redirect( FormsAuthentication.GetRedirectUrl(
    email.Text, false ));



    Ed West Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139