我一直都会收到这个错误。无法弄清问题是什么。我尝试清除我的cookie /整个浏览历史记录仍然没有运气。
在我的index.aspx中,我在page_load上有以下代码
protected void Page_Load(object sender, EventArgs e)
{
if (User.Identity.IsAuthenticated == true)
{
Response.Redirect(FormsAuthentication.DefaultUrl, true);
}
}
在网络配置中,我有这个:
<authentication mode="Forms">
<forms cookieless="UseCookies" defaultUrl="app_files/home.aspx" loginUrl="index.aspx" name="osivms" path="/" protection="All" requireSSL="true" slidingExpiration="true" timeout="525600" />
</authentication>
有时它确实有效..但它真的是随机的,我不知道当它工作时会发生什么变化..然后在我点击刷新或其他什么后我再次得到相同的错误信息...