vote up 2 vote down star
2

Is there any way to get truly restful routing working in MVC, just like the rails dudes have? I 'm talking about nested urls like /bands/metallica/albums/killemall/track/4

The only library that I found to be useful is Steve Hodgkiss' Restful routing. It seems though a bit risky to base my whole project's routing on this guy's pet-project.

What say you MVC veterans?

flag

50% accept rate
Ain't it a little soon to have MVC "veterans" around? :) – Martinho Fernandes Nov 3 at 18:17
Yes of course it is. But everything is possible when you're in the software engineering world! – thanos panousis Nov 3 at 18:50
Well, they were hiring positions requiring 3 years of C# experience. In 2002. I think that limited your hiring pool to Anders . . . – Wyatt Barnett Nov 3 at 20:22
If it's open source (which it is) and it works (which it does) what's the problem? – Richard 19 hours ago

1 Answer

vote up 2 vote down

Sure:

routes.MapRoute("IwannaBeLikeTheCoolRailsKids",
                "bands/{bandName}/albums/{albumName}/tracks/{trackNumber}",
                new { controller = "Bands",
                action = "ByTrack" 
               });

Then in your controller:

public ActionResult ByTrack(string bandName, string albumName, int trackNumber)

Easy peasie.

link|flag
Man, you wrote alb**l**um all over the place! :) – Martinho Fernandes Nov 3 at 18:21
Nice touch with IWannaBeLikeTheCoolRailsKids... – Martinho Fernandes Nov 3 at 18:22
1  
How would you handle this url? /bands/metallica/albums/killemall/track/the-four-horsemen – mxmissile Nov 3 at 18:25
1  
without losing the int track url functionality – mxmissile Nov 3 at 18:25
Spelling wasn't my strong suit. As for the second part, there isn't a way to remove the track number from the URL and still use it as a parameter. Rather, what you'd need to do is make it so you could find the song by a url slug field. – Wyatt Barnett Nov 3 at 18:39
show 4 more comments

Your Answer

Get an OpenID
or

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