HI,
I am using form based authentication in my site. And I am using the folllowing codes in the logout button
Session.Abandon();
Response.Cookies.Clear();
FormsAuthentication.SignOut();
Response.Redirect("Home.aspx");Session.Abandon();
Response.Cookies.Clear();
FormsAuthentication.SignOut();
Response.Redirect("Home.aspx");
It work goods, but if I hit the b ...
Go to the complete details ...