Hi, I have one asp.net Ajax Login using webservices. In this login i call the loogout() client side from hyperlink:
Sys.Services.AuthenticationService.logout(null,onLogoutCompleted,null,null);
return false;
My Webservice make :
[WebMethod]
public void Logout()
{
FormsAuthentication.SignOut();
}
logout work but my page make one big postback. Some way to make NO postback at logout?
Thanks