我的应用程序中的global.asax文件中有一些代码。每次我调试我的网站时,由于某种原因我得到sqlexception
:
void Application_AuthorizeRequest(object sender, EventArgs e)
{
if (Membership.GetUser() != null && Roles.IsUserInRole("UnFilled")) // this is where I get the exception
{
if (Response.Cookies["Expiration"] == null)
{
HttpRequest request = Context.Request;
HttpResponse response = Context.Response;
response.ContentType = ".aspx";
response.Write(request.Url.Host + "/Activate.aspx?account="+Membership.GetUser().Email);
}
}
}
任何人都知道为什么我会这样做,我该如何解决?
答案 0 :(得分:0)
我找到了答案,但不确定为什么会有效。如果我将编码放入自定义的http处理程序中似乎有效。
感谢所有贡献。