Tagged Questions
Questions about routing within ASP.NET MVC framework
42
votes
4answers
4k views
ASP.NET MVC ambiguous action methods
I have two action methods that are conflicting. Basically, I want to be able to get to the same view using two different routes, either by an item's ID or by the item's name and its parent's (items ...
19
votes
6answers
17k views
Custom ASP.NET MVC 404 Error Page
I am trying to make a custom HTTP 404 error page when someone types in a URL
that doesn't invoke a valid action or controller in ASP.NET MVC
Instead of it displaying the generic Resource Not Found ...
19
votes
3answers
4k views
MVC.Net Routing
Here is my scenario. For the example lets say that I need to return a list of cars based on a search criteria. I would like to have a single View to display the results since the output will be the ...
18
votes
3answers
3k views
How can I create a friendly URL in ASP.NET MVC?
How do I generate friendly URLs within the ASP.NET MVC Framework? For example, we've got a URL that looks like this:
http://site/catalogue/BrowseByStyleLevel/1
The 1 is Id of the study level (Higher ...
13
votes
2answers
341 views
Failing ASP.NET MVC route. Is this a bug or corner case?
I have an ASP.NET MVC 3 application where users can post suggestions along the lines of "bla bla would be better if yada yada yada".
For the suggestion detail page I have defined a nice SEO friendly ...
13
votes
2answers
2k views
How to prevent Url.RouteUrl(…) from inheriting route values from the current request
Note: I'm answering my own question immediately below
Lets say you have an action method to display products in a shopping cart
// ProductsController.cs
public ActionMethod Index(string gender) {
...
10
votes
4answers
344 views
How to ignore current route values when generating links?
The question is similar to asp.net mvc Html.ActionLink() keeping route value I don't want, but with a twist that makes it more complex.
Starting from a default new MVC3 app, I change the routes ...
10
votes
4answers
1k views
Can Areas in an ASP.NET MVC 2 application map to a subdomain?
Is there a way to map the Areas within an ASP.NET MVC 2 application to subdomains such as
movies.example.com/Theater/View/2
instead of
example.com/Movies/Theater/View/2
where { area = "Movies", ...
10
votes
3answers
1k views
Is there an equivalent to Ruby on Rails' respond_to format.xml, etc in ASP.Net MVC?
In Ruby on Rails you can write a simple controller action such as:
def index
@movies = Movies.find(:all)
respond_to do |format|
format.html #index.html.erb
format.xml { ...
10
votes
3answers
18k views
ASP.NET MVC - MapRoute versus routes.Add (and 404s)
I'm just getting started with ASP.NET MVC.
What is the difference between MapRoute and routes.Add ?
Should I just be using MapRoute? Can I map multiple routes? Which "maps" take precedence... those ...
9
votes
1answer
538 views
ASP.NET MVC: URL's with slash in parameter?
Question:
I am creating a wiki software, basically a clone of wikipedia/mediawiki, but in ASP.NET MVC (the MVC is the point, so don't recommend me ScrewTurn).
Now I have a question:
I use this ...
9
votes
2answers
1k views
How to get current controller and action from inside Child action?
I have a portion of my view that is rendered via RenderAction calling a child action. How can I get the Parent controller and Action from inside this Child Action.
When I use..
...
9
votes
2answers
2k views
What's the difference in ASP.NET MVC of RedirectToRoute and RedirectToAction?
What's the difference in ASP.NET MVC of RedirectToRoute and RedirectToAction? It's not clear what the difference is to me.
9
votes
5answers
3k views
ASP.Net MVC RouteData and arrays
If I have an Action like this:
public ActionResult DoStuff(List<string> stuff)
{
...
ViewData["stuff"] = stuff;
...
return View();
}
I can hit it with the following URL:
...
8
votes
2answers
730 views
Legacy URL rewriting with query string parameters
I've looked at http://stackoverflow.com/questions/817325/asp-net-mvc-routing-legacy-urls-passing-querystring-ids-to-controller-actions and several other similar posts for legacy URL routing, but I ...
8
votes
3answers
710 views
How can I create a route constraint of type System.Guid?
Can anyone point me in the right direction on how to map a route which requires two guids?
ie. http://blah.com/somecontroller/someaction/{firstGuid}/{secondGuid}
where both firstGuid and secondGuid ...
8
votes
1answer
5k views
ASP.net MVC custom route handler/constraint
I need to implement an MVC site with urls per below:
category1/product/1/wiki
category1/product/2/wiki
category1/sub-category2/product/3/wiki
category1/sub-category2/sub-category3/product/4/wiki
...
8
votes
4answers
3k views
ASP.NET MVC switch language, how to implement?
I have started converting my simple website to ASP.NET MVC, just to mess around with it. I have a switch language feature on there that basically sets the Session["language"] to another language and ...
7
votes
2answers
136 views
And still, what is the magic of ASP.NET MVC Content folder?
I've just moved my resource files (javascript, css, images) from Content folder to custom Assets folder. And I've noticed a strange behavior - these files are not longer cached by browser and ...
7
votes
1answer
1k views
Can you pass a model with RedirectToAction?
I'm using mvc 2 release candidate, and am wondering if there's any way to pass a model to an action using RedirectToAction.
For example, I have an edit action which takes an ID, and loads the record ...
6
votes
2answers
87 views
Serialize IList property on model when passed into Html.ActionLink
I'm trying to generate an Html.ActionLink with the following viewmodel:
public class SearchModel
{
public string KeyWords {get;set;}
public IList<string> Categories {get;set;}
}
To ...
6
votes
2answers
153 views
Performance of ASP.NET MVC routing
Does anyone know, is routing processing time valuable in a comparison with the total request time? Will there be a large performance difference between an application with 20 and 100 (probably more) ...
6
votes
2answers
351 views
How to determine if an arbitrary URL matches a defined route
How can I tell if a string matches a particular named route?
I have a route like this:
routes.MapRoute(
"FindYourNewRental",
"find-your-new-rental/{market}/{community}.html",
new { ...
6
votes
1answer
316 views
Why does ASP.NET Routing take precendence over web.config Http Handlers section?
Our shop is integrating ASP.NET MVC into a large web application that utilizes custom & 3rd party HTTP Handlers defined in web.config under system.webServer\handlers. Leveraging HTTP Handlers in ...
6
votes
3answers
855 views
Plus (+) in MVC Argument causes 404 on IIS 7.0
I have an MVC route that is giving me hell on a staging server running IIS. I am running Visual Studio 2010's development server locally.
Here is a sample URL that actually works on my dev box:
...
6
votes
3answers
781 views
How to achieve a dynamic controller and action method in ASP.NET MVC?
In Asp.net MVC the url structure goes like
http://mysite.com/{controller}/{action}/{id}
For each "controller", say http://mysite.com/blog, there is a BlogController.
But my {controller} portion of ...
6
votes
1answer
578 views
ASP.NET MVC 2 - do UrlParameter.Optional entries have to be at the end of the route?
I am migrating a site from ASP.NET MVC 1 to ASP.NET MVC 2. At the moment, the site supports the following routes:
/{country}/{language}/{controller}/{action}
/{country}/{controller}/{action}
...
6
votes
5answers
4k views
controller path not found for static images? asp.net mvc routing issue?
I have an image folder stored at ~/Content/Images/
I am loading these images via
<img src="/Content/Images/Image.png" />
Recently, the images aren't loading and I am getting the following ...
6
votes
4answers
1k views
ASP.NET MVC Action Parameter Naming
Using the default route provided, I'm forced to name my parameters "id". That's fine for a lot of my Controller Actions, but I want to use some better variable naming in certain places. Is there ...
6
votes
1answer
1k views
asp.net MVC and RESTful routing, rails-style. Is it possible?
Is there any way to get truly restful routing working in MVC, just like the rails dudes have? I 'm talking about nested urls like /bands/metallica/albums/killemall/track/4
The only library that I ...
6
votes
1answer
1k views
Why is ASP.NET MVC ignoring my trailing slash?
Consider the following route:
routes.MapRoute(
"Service", // Route name
"service/", // URL with parameters
new {controller = "CustomerService", action = "Index"} // ...
5
votes
1answer
51 views
MVC pass ids separated by “+” to action
I want to have possibility to access action by the following URL type:
http://localhost/MyControllerName/MyActionName/Id1+Id2+Id3+Id4 etc.
and handle it in code in the following way:
public ...
5
votes
3answers
157 views
Infinite URL Parameters for ASP.NET MVC Route
I need an implementation where I can get infinite parameters on my ASP.NET Controller. It will be better if I give you an example :
Let's assume that I will have following urls :
...
5
votes
1answer
148 views
What is the difference between these two ASP.NET MVC IgnoreRoute directives?
The default ASP.NET MVC 3 project template contains the following IgnoreRoute directive:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
I have now seen multiple projects change this line ...
5
votes
1answer
116 views
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?
My reason for asking has to do with IIS 6 and ...
5
votes
5answers
239 views
Switching to {controller}/{id}/{action} breaks RedirectToAction
I am trying to use proper REST urls with MVC. To do that I switched default Routing from:
{controller}/{action}/{id}
to
{controller}/{id}/{action}
so instead of:
/Customer/Approve/23
there ...
5
votes
4answers
382 views
mvc3 routing with 2 different domains
I've developed a multi-culture app in mvc3. I have a table that holds a domain list (currently 2 records):
www.mydomain.com -> en-US
www.mydomain.pl -> pl-PL
My app dynamically checks which domain ...
5
votes
2answers
161 views
Localizing/translating routes in ASP.NET MVC
Anyone knows a nice solution to localize routes in ASP.NET MVC? What I'd like to achieve is that these two urls point to the same action/resource:
http://example.org/Products/Categories (en)
...
5
votes
1answer
136 views
Set start route in ASP.NET MVC visual studio development server
My route is configured to require a certain extension.
Because of this I get an HttpException when I try to debug from visual studio: The incoming request does not match any route.
I then have to ...
5
votes
3answers
289 views
How to create M V C for data that have relation
Consider this Scenario:
I want to build an MVC application for Northwind Database.I want to have a view that list some orders and I want to create links for CustomerID and EmployeeID and a details ...
5
votes
3answers
908 views
ASP.NET MVC Controller Unit Testing - Problem with UrlHelper Extension
Trying to do some controller unit-testing in my ASP.NET MVC 3 web application.
My test goes like this:
[TestMethod]
public void Ensure_CreateReviewHttpPostAction_RedirectsAppropriately()
{
// ...
5
votes
1answer
2k views
Implementing “Remember Me” Feature in ASP.NET MVC
I'm trying to implement a "remember me" feature to my login form. I am using ASP.NET MVC as my web application. I managed to get the cookie stuff working, but I failed to automatically login the user ...
5
votes
1answer
3k views
Other errors find my Error.cshtml, why doesn't 404 error find Error.cshtml?
I am tackling ASP.NET, MVC 3, web development, for the first time, all at the same time. Please bear with me, as I know this subject has been discussed heavily from different angles. I still have not ...
5
votes
1answer
151 views
How can I implement “natural” url scheme routing tables in ASP.NET MVC
I would like to specify my routing tables such that they would feel much more "natural"
/Products
/Product/17
/Product/Edit/17
/Product/Create
Close to the defaults configuration but such that ...
5
votes
2answers
352 views
Can anyone recreate the following bug I'm experiencing in routes with 2 or more optional parameters, in .NET 4.0 / MVC3?
I know that if you think you found a bug in the .NET framework you are most likely wrong, but that's why I'm writing this question, so please hear me out.
I am fairly certain that there is a ...
5
votes
2answers
325 views
Route always goes to the first maproute
I'm trying to create URIs that look a little something like this:
http://hostname/mobile/en/controller/action for mobiles OR http://hostname/en/controller/action for desktop (non mobiles).
My Route ...
5
votes
2answers
2k views
Redirect from one Area's action to a action in the “root”-area?
I use the latest version of ASP.Net MVC 2 RC.
My question is, how do I redirect from one action that's in the "Blog"-area to the index-action in the home-controller that exists in the "root" of my ...
5
votes
4answers
2k views
MVC 2 AreaRegistration Routes Order
I noticed that in MVC 2 Preview 2, AreaRegistration is loading the routes for each area in an arbitrary order. Is there a good way to get one before the other?
For example, I have two areas - "Site" ...
5
votes
2answers
1k views
Custom ASP.NET MVC Route In Nested Folders
I want sub-folders in my MVC application, so the current routes just don't cut it.
I've got a folder structure such as
Views/Accounts/ClientBalances/MyReport.aspx
and I'm wanting a URL such as ...
5
votes
2answers
1k views
Creating an action link in a Controller
In one of my controller actions, I'm generating some XML. One of the attributes in that XML is an href to another controller and action, with some parameters. The XML should look something like this:
...