asp.net-mvc-routing
Why doesnt this MVC routing work?
//standard routing routes.MapRoute( \"Default\", // Route name \"{controller}/{action}/{id}\", new { controller = \"Home\", action = \"Index\", id = UrlParameter.Optional }[详细]
2023-04-12 20:00 分类:问答ASP.NET MVC Routing with areas
I have an area called Organisations. In this area I have a view with a Url.Action link. By default, if I just pass the action name, it will call the action in the current controller in the Organisati[详细]
2023-04-12 14:26 分类:问答Asp.Net Custom Routing and custom routing and add category before controller
I\'m just learning MVC and want to add some custom routing to my site. My site is split into brands so before accessing other parts of the site the user will select a brand.Rather than storing the ch[详细]
2023-04-12 04:03 分类:问答ASP.Net MVC: Rewriting with routing
I want to map the following URI: /admin/controller/action/id to the following: Controller -> Controller[详细]
2023-04-11 13:24 分类:问答MVC3 Routing - Routes that builds on each other
I have an AREA setup in my project. I need to make the routes for the area progressive, meaning that the route will build on each other.[详细]
2023-04-10 19:02 分类:问答Custom RouteMap
Hi I have to route an old path, that was containing the old webform, to my new controller. I tried this:[详细]
2023-04-10 06:01 分类:问答Override directory listing with MVC URL routing
Recently, I partially converted an Asp.Net web forms application to use MVC. We still have parts of the application in web forms (.aspx pages) and use MVC routing to work with Controllers and such.[详细]
2023-04-10 01:45 分类:问答asp.net MvcHandler.ProcessRequest is never called
On Asp.Net MVC 3 I have overwritten the MvcRouteHandler and MvcHandler to include handling the subdomain part of the Url.[详细]
2023-04-10 01:04 分类:问答How do I create a route for matching all paths starting with a given prefix?
In my MVC application I want to create a route such that when a user requests a URL starting with a prefix some specific action is invoked.[详细]
2023-04-09 22:28 分类:问答.NET MVC 3 Routes
Recently I\'ve made the transition from Web Forms to MVC 3 and I\'ve been trying to get to grips with MVC routes. I have a somewhat peculiar problem in that when I receive a request to my application[详细]
2023-04-09 07:09 分类:问答