Tagged Questions
3
votes
2answers
3k views
ASP.NET MVC - Routes and UrlHelper
I have the following route
routes.MapRoute(
"GigDayListings", // Route name
"gig/list/{year}/{month}/{day}", // ...
0
votes
1answer
624 views
Zend URL helper and custom routes?
I can't figure this out. How do you use the url helper with custom routes?
I have a method in my users controller called edit and I have a custom route for it so it can be called through ...
0
votes
1answer
67 views
Rearranging parts of the URL result from link_to in Rails
This is how I'm doing it now:
link_to "Profile", :controller => "profiles", :action => "asked", :id => @profile
# => <a href="/profiles/asked/1">Profile</a>
Does it make ...