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}", // ...
2
votes
2answers
454 views
How to Make Zend_Controller_Router resets un-wanted parameter by default
I'm using Zend-Framework 1.9.5 to make a web-application, But it's Url_Helper was quite tricky to me in the matter of parameter reset!, I know it's a good feature (parameter preserving) but in most ...
0
votes
1answer
152 views
Mvc UrlHelper in conjunction with JQuery Templates
I would like to use the Mvc UrlHelper in conjunction with JQuery Templates.
Example template...
...
{{each Items}}
<div>
<%= Url.Action("Action", "Controller", new { Id ...