Author: nlad | Posted on: 4/16/2009 1:49:42 PM | Views : 1007

 how can i do coding and where ,aspx file or .cs file for completle logout and not able to visite previous page.
I did this coding in aspx.cs file,but not work-->
protected override void Page_Load(object sender, EventArgs e)
    {
  
    
        FormsAuthentication.SignOut();
       Session.Clear();
        Session.Abandon();
        Response.Cookies.Clear();
      
    }
 
 
 
 
 
...

Go to the complete details ...