asp.net mvc 登出

來源:互聯網
上載者:User

標籤:內容   auth   mic   不能   index   今天   navbar   登出   針對   

使用asp.net mvc 實現使用者登出和根據登陸狀態動態顯示網頁內容。

前兩天剛剛勉強完成了使用者的登陸及角色的驗證,於是今天嘗試實現使用者的登出。

想要實現使用者的登出其實還是非常簡單的,由於是針對我之前的登陸方法寫的登出方法,所以可能不能廣泛適用。

 

下面使用者登出的登出代碼

 public ActionResult logout()        {            HttpContext.Request.Cookies.Remove(FormsAuthentication.FormsCookieName);            FormsAuthentication.SignOut();            return RedirectToAction("Index", "Home");        }

其中Request.Cookie.Remove(FormsAuthentication.FormsCookieName)是用來移除我們存放的cookie,而FormsAuthentication.SignOut()是用來從瀏覽器刪除Forms身分識別驗證票據的。

接下來就是根據使用者登陸狀態來動態顯示網頁內容。

@using Microsoft.AspNet.Identity@if (Request.IsAuthenticated){    <ul class="nav navbar-nav navbar-right">        @Html.ActionLink("Log out","logout","Access","",new { @class="navbar-brand"})    </ul>}else{    <ul class="nav navbar-nav navbar-right">        <li>@Html.ActionLink("Log in", "login", "Access", "", new { @class = "navbar-brand" })</li>    </ul>}

 關鍵的一句就是Request.IsAuthenticated這句的含義就是就是擷取一個布爾值,該值表示請求是否已經過身分識別驗證。

asp.net mvc 登出

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.