使用Visual Studio Development Server開發域驗證程式時出現HTTP Error 403 – Forbidden錯誤的解決辦法

來源:互聯網
上載者:User

Logon頁面代碼如下:

private void DisablePageCaching()<br /> {<br /> Response.Expires = 0;<br /> Response.Cache.SetNoStore();<br /> Response.AppendHeader("Pragma", "no-cache");<br /> }</p><p> protected void Page_Load(object sender, EventArgs e)<br /> {<br /> DisablePageCaching();<br /> if (this.Request.Cookies[GlobalParameters.COOKIE_KEY_LOGONUSERFLAG] != null && this.Request.Cookies[GlobalParameters.COOKIE_KEY_LOGONUSERFLAG].Value.ToString() == "1")<br /> {<br /> if (HttpContext.Current.User.Identity.IsAuthenticated)<br /> {<br /> Response.Cookies[GlobalParameters.COOKIE_KEY_LOGONUSERFLAG].Value = "0";<br /> Response.Redirect("~/Default.aspx", true);<br /> }<br /> }<br /> }</p><p> protected void btnLogon_Click(object sender, EventArgs e)<br /> {<br /> Response.Cookies[GlobalParameters.COOKIE_KEY_LOGONUSERFLAG].Value = "1";<br /> Session[GlobalParameters.SESSION_KEY_LOGONUSER] = null;<br /> Response.StatusCode = 401;<br /> Response.StatusDescription = "Unauthorized";<br /> Response.AddHeader("WWW-Authenticate", "Negotiate");<br /> Response.AddHeader("WWW-Authenticate", "NTLM");<br /> }

 

如果使用Visual Studio Development Server而不在IIS建虛擬目錄, 就會出現錯誤

Version Information: ASP.NET Development Server 9.0.0.0

 

而且調試時,設斷點的話,在彈出域使用者輸入框並輸入使用者和密碼後,死活都不觸發page load了, 直接就是上邊的錯誤

解決辦法只有建一個虛擬目錄了

Server Error in '/' Application.

HTTP Error 403 - Forbidden.
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.