我非常需要帮助。我花了很多时间试图弄清楚发生了什么。我使用 FormsAuthenticationTicket 来管理用户连接。就像这里:
FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(
1, userName, System.DateTime.Now, System.DateTime.Now.AddMinutes(timeout),
false, "", FormsAuthentication.FormsCookiePath);
string encryptedTicket = FormsAuthentication.Encrypt(authTicket);
HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName,
encryptedTicket);
authCookie.Expires = DateTime.Now.AddMinutes(timeout);
HttpContext.Current.Response.Cookies.Add(authCookie);
所以没什么疯狂的。我在我的实时网站上做了一些更新(但不是在票证代码上),现在当我超时时,“ReturnUrl”参数不再出现在登录页面的 URL 中。
我的问题是:当票开始出现问题时,您对在哪里搜索有什么基本建议吗?
谢谢你们。