Top "Asp.net-routing" questions

ASP.

Make ASP.NET MVC Route Id parameter required

I have this route: routes.MapRoute( "PlaceDetails", "{controller}/{action}/{id}", new { controller = "Place", action = "Details", id = UrlParameter.Optional } ); This routes …

c# asp.net-mvc asp.net-mvc-routing asp.net-routing
MVC: Route Get / Post to different controllers. How?

I am writing a MVC controller where I need to handle both, data return as well as a long poll "…

asp.net-mvc-3 asp.net-routing
Advanced ASP Routing tutorials and examples

One of major hurdles I seem to be having recently is getting my head around some of the more complex …

asp.net-mvc asp.net-routing
"True" REST routing via MVC 4 Web API

TL;DR Summary: Can I configure MVC Web API routing for HTTP GET, PUT & DELETE? I've been looking into …

c# asp.net api rest asp.net-routing
How to create RouteUrls with databound parameters declaratively?

I'm using the new Routing feature in ASP.NET 4 (Web forms, not MVC). Now I have an asp:ListView which …

asp.net data-binding url-routing asp.net-4.0 asp.net-routing