我期待創建一個非常簡單的註銷頁面,但落在第一個障礙。簡單'註銷'ASP.NET頁面
這裏是我當前登錄頁面是否有幫助: http://pastebin.com/2xJH1DnT
protected void Page_Load(object sender, EventArgs e)
{
RegisterHyperLink.NavigateUrl = "Register.aspx?ReturnUrl=" +
HttpUtility.UrlEncode(Request.QueryString["ReturnUrl"]);
}
我試着最初使用FormsAuthentication.SignOut();
我註銷代碼隱藏,但一直得到錯誤:
CS0103: The name 'FormsAuthentication' does not exist in the current context
我如何能實現註銷功能?
你得到的錯誤是什麼? – lancscoder 2011-06-14 14:49:18
你會得到什麼錯誤。你可以發佈嗎? – 2011-06-14 14:49:43
有什麼錯誤?簽名後,您是否讓用戶重定向到登錄頁面? – Xhalent 2011-06-14 14:50:45