您好,登錄后才能下訂單哦!
這篇文章主要介紹“ASP.NET怎么實現登出系統并清除Cookie”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“ASP.NET怎么實現登出系統并清除Cookie”文章能幫助大家解決問題。
前端頁面代碼主要顯示退出系統或者網站的可視化按鈕代碼,代碼如下:(請忽略項目關鍵字:CPU)
<ul class="nav navbar-nav navbar-right"> <li class=""> <a href="javascript:;" rel="external nofollow" class="user-profile dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <img src="@Url.Content("~/assets/img/user2.png")" alt="">@CPU.UserProfile.User.UserID <span class="fa fa-angle-down"></span> </a> <ul class="dropdown-menu dropdown-usermenu pull-right" > <li> @using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", style = "padding: 12px 0px;" })) { @Html.AntiForgeryToken() <a href="javascript:document.getElementById('logoutForm').submit()" rel="external nofollow" ><i class="fa fa-sign-out pull-right"></i> Log Out</a> } </li> </ul> </li> <li class="hidden-xs"><a><span>在線人數: @System.Web.HttpContext.Current.Application["OnLineUserCount"] 人</span></a></li> </ul>
后臺的代碼,主要是對前臺點擊按鈕的事件進行處理:退出系統和清除系統Cookie
[HttpPost] [AllowAnonymous] [ValidateAntiForgeryToken] public ActionResult LogOff() { FormsAuthentication.SignOut();//退出登錄 System.Web.HttpContext.Current.Session.Abandon();//清理緩存 return RedirectToAction("Login", "Account"); }
關于“ASP.NET怎么實現登出系統并清除Cookie”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。