我在 VS2005 中使用了一个小应用程序。我使用 Visual Studio 提供的登录控件创建了一个登录面板。
我为此使用了表单身份验证。它工作正常。现在我想使用表单身份验证在链接按钮上创建注销功能。
我怎样才能实现这个功能?请提供有价值的回应。
我在 VS2005 中使用了一个小应用程序。我使用 Visual Studio 提供的登录控件创建了一个登录面板。
我为此使用了表单身份验证。它工作正常。现在我想使用表单身份验证在链接按钮上创建注销功能。
我怎样才能实现这个功能?请提供有价值的回应。
your Log-out link button code should be:
//sign out from form authentication
FormsAuthentication.SignOut();
//abandon session
Session.Abandon();
Response.Redirect("logon.aspx");
you can find more detail at below link . Log-Out using form Authentication
注销时应实施这些事情-
FormsAuthentication.SignOut(); //Removes the forms-authentication ticket from the browser.
Session.Clear(); //clear all session values
Session.Abandon(); //Remove session objects
FormsAuthentication.RedirectToLoginPage(); //redirect the user back to the login page
//OR
Response.Redirect("/Default.aspx"); //whichever page you need.