Now I'm trying to work with System.Web.Routing. All is just fine, but I can't understand how to make form authentication work with url routing (return url, redirection, etc). Google says nothing. Help! :)
UPD: I forgot - I don't use MVC. That's the problem. How to use rounig and form authentication without MVC
UPD2: more about my problem
What I want to get: urls such “mysite.com/content/123
”, “mysite.com/login/
”, etc using Routes. It’s important to make login page works like “regular” ASP.NET login form (redirects to login from secure area when not login on, and redirect back to secure area when loggined).
That’s what I’m doing.
In global.asax
on Application_Start
, register routes like this:
routes.Add("LoginPageRoute", new Route("login/", new CustomRouteHandler("~/login.aspx")));
routes.Add("ContentRoute", new Route("content/{id}", new ContentRoute("~/content.aspx"))
{
Constraints = new RouteValueDictionary {{ "id", @"d+" }}
});
Where CustomRouteHandler
and ContentRoute
– simple IRouteHandler
classes, just like:
...
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
var page = BuildManager.CreateInstanceFromVirtualPath(VirtualPath, typeof(Page)) as IHttpHandler;
return page;
}
...
All seems to be perfect: I’m getting content.aspx
when go to “/content/10”
and login.aspx
when go to “/login/”
. But…
When I make content secured (in web.config
, with deny=”?”
), login form doesn’t work like expected.
Now I can’t reach the “/content/10”
page:
0. I’m typing “/content/10”
in my browser.
1. Site redirects to “/login/?ReturnUrl=%2fcontent%2f10”
. (Hm… seems like all problems starts here, right? :)
2. I’m trying to log in. No matter what credentials I’m entered…
3. …site redirects me to “login?ReturnUrl=%2fContent%2f10”
(yellow screen of error - Access is denied.
Description: An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL
.)
So, the problem is how to get ASP.NET understand real ReturnUrl
and provide redirection after login.