我已经在我的 global.asax 中实现了一个捕获所有安全异常的方法,就像这样......
protected void Application_Error(object sender, EventArgs e)
{
Exception err = Server.GetLastError();
if (err is System.Security.SecurityException)
Response.Redirect("~/Error/Roles.aspx);
}
是否有我可以访问的属性显示用户权限中缺少的角色名称?IE。err.RoleThatFailed?
谢谢,
ETF 费尔法克斯。