在 IRouteHandler.GetHttpHandler() 中我可以重定向吗?
作为对未经证实的性感技术的狂热爱好者,我在我的 Web 窗体应用程序中采用了 System.Web.Routing 来管理导航等。 此外,我希望将基于角色的安全性从 web.config 转移到路由定义本身,这样我就可以说“此路由仅适用于角色 x、y”。
因此,我有一个实现 IRouteHandler 的类,在尝试加载特定页面之前,它会检查用户是否处于允许的角色集中。 我的问题是,如果不是,我如何重定向到该处理程序中的登录页面? 我知道在这种情况下可以加载登录页面,但我更喜欢使用“返回”页面等进行干净的重定向。
public IHttpHandler GetHttpHandler(RequestContext requestContext) {
if ( AllowedRoles != null )
{
bool allowed = false;
for ( int i = 0; i < AllowedRoles.Length; i++ )
{
if ( requestContext.HttpContext.User.IsInRole( AllowedRoles[i] ) )
{
allowed = true;
break;
}
}
if ( !allowed )
{
???
}
}
As a glutton for unproven sexy techniques I've adopted System.Web.Routing
in my Web Forms application to manage navigation and such. Further, I'm hoping to move role-based security from web.config to the route definitions itself so I can say "this route is only available to roles x, y".
So I've got the class that implements IRouteHandler and before it attempts to load a particular page it checks to see if the user is in it's set of allowed roles. My question is, if they aren't, how do I redirect to the login page within that handler? I know it's possible to load the login page in that instance, but I'd prefer a clean redirect with the "returnto" page and all.
public IHttpHandler GetHttpHandler(RequestContext requestContext) {
if ( AllowedRoles != null )
{
bool allowed = false;
for ( int i = 0; i < AllowedRoles.Length; i++ )
{
if ( requestContext.HttpContext.User.IsInRole( AllowedRoles[i] ) )
{
allowed = true;
break;
}
}
if ( !allowed )
{
???
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以从 GetHttpHandler 进行重定向。 只需使用:
It's possible to do a redirect from GetHttpHandler. Just use: