asp.net-mvc-routing
Can I modify an MVC route outside of Global.asax?
Is it possible to modify the the routes (and thus the RouteTable) outside of the global.asax file, maybe in a controller?Is this even advisable?[详细]
2023-03-22 04:50 分类:问答Specifying view to load in Edit action
I\'m working on my first ASP.NET MVC 3 application and I\'ve got two Controllers with Views, IceCreamController/IceCreamView and RecipeController/RecipeView, and on each the user can make a selection[详细]
2023-03-22 02:39 分类:问答ASP.NET MVC 3 multilingual SEO
I\'m currently writing an ASP.NET MVC 3 web application that supports multiple languages. I already managed to translate all the routes so that calls like:[详细]
2023-03-21 23:52 分类:问答ASP.NET MVC - how to get a full path to an action
Inside o开发者_JAVA技巧f a View can I get a full route information to an action? If I have an action called DoThis in a controller MyController. Can I get to a path of \"/MyController/DoThis/\"? You[详细]
2023-03-21 22:43 分类:问答asp.net mvc multilanguage urls/routing
This is a two part question regarding asp.net mvc multilanguage urls/routing and SEO best practices/benefits…[详细]
2023-03-21 03:55 分类:问答Problem with asp.net mvc routing
I have the following project structure http://img13.imageshost.ru/img/2011/07/15/image_4e1fd08fe0c5d.png[详细]
2023-03-20 17:20 分类:问答How do I match a URL starting with a literal tilde character (~) in System.Web.Routing / ASP.NET MVC?
I\'m converting some old-school code to ASP.NET MVC, and have hit a snag caused by our URL formats. We specify thumbnail width, height, etc. in a URL by prefixing the special URL path with a tilde, as[详细]
2023-03-20 17:07 分类:问答MVC3 maproute where first value of URL is querstring for default controller and action
I want to make a route something like this: routes.MapRoute( 开发者_如何学编程\"Default\", // Route name[详细]
2023-03-19 23:45 分类:问答Polymorphism in action methods MVC
I have two actions: //Action 1 public FileResult Download(string folder, string fileName) { ... } //Action 2[详细]
2023-03-19 17:56 分类:问答route that will handle URL's in the URL for MVC 3
I am trying to create a custom route that can handle something like: domain.com/link/htt开发者_JAVA技巧p://www.someotherdomain.com/blablah.html?qstring=54[详细]
2023-03-19 17:33 分类:问答