我需要阅读,生成并更新一个与formsauthentication one不同的身份验证cookie。
我看到很多选项,例如使用IHttpHandlers
,IHttpModules
,自定义授权过滤器等。
你会如何处理它?</ p>
答案 0 :(得分:1)
如果您需要弄乱身份验证cookie,请在Global.asax中使用Application_AuthenticateRequest事件
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}