I\'m trying to get a URL from my routes table.Here is the method. private static void RedirectToRoute(ActionExecutingContext context, string param)
I have the following default and only route: routes.MapRoute( \"Default\", // Route name \"{controller}/{action}/{id}\", // URL with parameters
I make Views/About/Index.aspx and Views/Faq/Index.aspx + Controllers/AboutController.cs and Controllers/FaqController.cs controllers for these purposes.
I have these 2 routes : routes.MapRoute(\"Agenda\", ConfigurationManager.AppSettings[\"eventsUrl\"] + \"/{year}/{month}\", MVC.Events.Index(), new { year = DateTime.Now.Year, month = DateTime.Now.Mon
I\'m trying to use Html.ActionLink to generate a link with in this form: /Action/Model/Id/Parameter1/Parameter2
[I\'m trying to figure out the reason why I\'m having another problem, and this question is part of the puzzle.]
I have a MVC site with AD authorization.This is all working fine.I publish the site to the webserver and call the site directly (http://intranet).If I have not logged in for a while (I have an authori
I am just getting started with ASP.NET MVC and it\'s great! However, I don\'t quite understand setting up routes.
We have a couple ASP MVC websites just using the standard VS templates default settings - Working as wanted. But now I want to localize these website ( They are now in Dutch and I will add the English
i have a quetion about MVC routing. I have a controller method that is called with many different combinations of URL\'s. To overcome issue i am using optional parameters.