vote up 5 vote down star
3

I must be dense. After asking several questions on StackOverflow, I am still at a loss when it comes to grasping the new routing engine provided with ASP.NET MVC. I think I've narrowed down the problem to a very simple one, which, if solved, would probably allow me to solve the rest of my routing issues. So here it is:

How would you register a route to support a Twitter-like URL for user profiles?

www.twitter.com/username

Assume the need to also support:

  • the default {controller}/{action}/{id} route.

  • URLs like:

    www.twitter.com/login
    www.twitter.com/register

Is this possible?

flag

57% accept rate
this is a helpful utility too: haacked.com/archive/2008/… – John Sheehan Dec 18 '08 at 7:52
Hi Kevin, did you get your answer ?? – parminder Jul 29 at 10:33

6 Answers

vote up 4 vote down check

What about

routes.MapRoute(
    "Profiles",
    "{userName}",
    new { controller = "Profiles", action = "ShowUser" }
);

and then, in ProfilesController, there would be a function

public ActionResult ShowUser(string userName)
{
...

In the function, if no user with the specified userName is found, you should redirect to the default {controller}/{action}/{id} (here, it would be just {controller}) route.

Urls like www.twitter.com/login should be registered before that one.

routes.MapRoute(
    "Login",
    "Login",
    new { controller = "Security", action = "Login" }
);
link|flag
vote up 1 vote down

i think your question is similar to mine. http://stackoverflow.com/questions/1442803/asp-net-mvc-routing

this is what robert harvey answered.

routes.MapRoute( _
    "SearchRoute", _
    "{id}", _
    New With {.controller = "User", .action = "Profile", .id = ""} _

)

link|flag
vote up 0 vote down

OK I haven't ever properly tried this, but have you tried to extend the RouteBase class for dealing with users. The docs for RouteBase suggest that the method GetRouteData should return null if it doesn't match the current request. You could use this to check that the request matches one of the usernames you have.

You can add a RouteBase subclass using:

  routes.Add(new UserRouteBase());

When you register the routes.

Might be worth investigating.

link|flag
vote up 2 vote down

The important thing to understand is that the routes are matched in the order they are registered. So you would need to register the most specific route first, and the most general last, or all requests matching the general route would never reach the more specific route.

For your problem i would register routing rules for each of the special pages, like "register" and "login" before the username rule.

link|flag
vote up 0 vote down

You could handle that in the home controller, but the controller method would not be very elegant. I'm guessing something like this might work (not tested):

routes.MapRoute(
    "Root",
    "{controller}/{view}",
    new { controller = "Home", action = "Index", view = "" }
);

Then in your HomeController:

public ActionResult Index(string view) {
    switch (view) {
        case "":
            return View();

        case "register":
            return View("Register");

        default: 
            // load user profile view
    }
}
link|flag
Even if this works, I'm not suggesting you do it. It smells :) – John Sheehan Dec 18 '08 at 7:54
vote up 1 vote down

Check this question: How does Web Routing Work?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.