WebSecurity Logout 方法
websecurity - logout()

定義
logout() 方法注銷當(dāng)前用戶。
c# 和 vb 語法
logout()
實(shí)例
實(shí)例 c#
// 退出登錄
websecurity.logout();
// 跳轉(zhuǎn)回主頁
response.redirect("~/");
websecurity.logout();
// 跳轉(zhuǎn)回主頁
response.redirect("~/");
實(shí)例 vb
' 退出登錄
websecurity.logout()
' 跳轉(zhuǎn)回主頁
response.redirect("~/")
websecurity.logout()
' 跳轉(zhuǎn)回主頁
response.redirect("~/")
參數(shù)
無。
返回值
無。
錯(cuò)誤和異常
在下面的情況下,任何對(duì) websecurity 對(duì)象的訪問將拋出一個(gè) invalidoperationexception:
- initializedatabaseconnection() 方法沒有被調(diào)用
- simplemembership 沒有初始化(或者在網(wǎng)站配置中禁用)
備注
當(dāng)用戶已登錄,asp.net 在 cookie 中設(shè)置一個(gè)身份驗(yàn)證令牌,讓 asp.net 知道用戶已登錄的后續(xù)請(qǐng)求。
logout() 方法移除身份驗(yàn)證令牌,注銷用戶。
技術(shù)數(shù)據(jù)
名稱 | 值 |
---|---|
namespace | webmatrix.webdata |
assembly | webmatrix.webdata.dll |

相關(guān)文章
- ASP.NET Web Pages 教程
- ASP.NET Web Pages 文件夾
- ASP.NET Web Pages 文件
- ASP.NET Web Pages PHP
- ASP.NET Web 的 C# 和 VB 實(shí)例
- ASP.NET Razor C# 循環(huán)和數(shù)組
- ASP.NET Razor C# 邏輯
- ASP.NET Razor VB 循環(huán)和數(shù)組
- ASP.NET Razor VB 邏輯
- ASP.NET MVC 文件夾
- ASP.NET MVC 模型
- ASP.NET MVC HTML 幫助器
- ASP.NET Web 頁面
- ASP.NET Web 表單
- ASP.NET ViewState
- ASP.NET TextBox 控件
- ASP.NET ArrayList
- ASP.NET XML 數(shù)據(jù)綁定
- ASP.NET Repeater 控件
- ASP.NET DataList 控件