In IRouteHandler.GetHttpHandler() Can I redirect? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T05:58:39Zhttp://stackoverflow.com/feeds/question/351354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351354/in-iroutehandler-gethttphandler-can-i-redirect1In IRouteHandler.GetHttpHandler() Can I redirect?jameswhite2008-12-08T23:46:56Z2009-01-25T22:15:56Z
<p>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". </p>
<p>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.</p>
<p>Thanks!</p>
<p>James</p>
<pre><code>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 )
{
???
}
}
</code></pre>
http://stackoverflow.com/questions/351354/in-iroutehandler-gethttphandler-can-i-redirect/478415#4784151Answer by Rob Volk for In IRouteHandler.GetHttpHandler() Can I redirect?Rob Volk2009-01-25T22:15:56Z2009-01-25T22:15:56Z<p>It's possible to do a redirect from GetHttpHandler. Just use:</p>
<pre><code>requestContext.HttpContext.Response.Redirect("login.aspx");
</code></pre>