Tagged Questions
The maproute tag has no wiki summary.
3
votes
2answers
250 views
Is it possible to have route multiple parameters in asp.net mvc using maproute
I want a user to be able to access objects (could be JSON or XML) using a restful syntax rather than having to use query strings.
So instead of ...
3
votes
3answers
429 views
Train track route using GoogleMaps
I am woundering if it is possible to create a route on a map using a train track. I know its possible over normal roads.
Best regards,
Paul peelen
3
votes
1answer
546 views
Why is ASP.NET MVC MapRoute popping up a Windows authentication dialog box?
This one has me stumped, and I think it might be a bug in Microsoft's MVC implementation. I am building a MVC website using VS2008 SP1. In an attempt to lockdown my website I edited my controller to ...
2
votes
1answer
553 views
MVC3 MapRoute, parameter with slashes
How would i create a MapRoute that accepts slashes without considering it a new parameter?
If the url is
http://localhost/root/p1/default.aspx
I want one parameter to pick up everything after ...
2
votes
3answers
771 views
How can I create a MapRoute entry in ASP.NET MVC that only matches if there is no further path?
I'd like to create a MapRoute entry that will match "/Users", but won't match paths like "/Users/etc" or "/Users/etc/etc".
I have to also match "Users/{id}" (where ID is an int) and "Users/Me" (which ...
1
vote
1answer
53 views
Asp.net MVC and redirect to External site
I have created a mvc application, its working fine, now I want to add some route based on xml, I don't want to create action based on that, that will work on fly.
i.e.
www.lmenaria.com/site1 this ...
1
vote
1answer
48 views
route the url in MVC
I have this path
In view
<img src="PhotoDisplay.ashx?photoid=12&size=medium" alt="Image with no resize"/>
I want to route the source url to an action . I must need to use this url ...
1
vote
3answers
74 views
How do I redirect everything to a single controller?
I have three specific routes:
routes.MapRoute(
"Home Page",
"",
new { controller = "Home", action = "Index" }
);
routes.MapRoute(
"Admin Section",
...
1
vote
2answers
264 views
how to map a Route like (site.com/username) in MVC 3
I want to map a route like this:
mysite.com/username
in ASP.NET MVC 3 application; How can I do it, please?
Thanks to all, regards
1
vote
1answer
74 views
MVC2 Slash char in url
I want to use encrypted strings in MVC2 urls. A typical url in my app looks like this:
http://localhost:29558/Account/PasswordReset/ZKGeDMZikfIsnO8/MEs7SCBlI+MZo1Je8LM5dTEeCt3u91ARPUcavT5UXfVVRfyE
...
1
vote
2answers
2k views
MVC 3 How to use MapRoute
Could someone show me how to use the MapRoute method? I have tried creating my own routes, but it's not working. What i want to accomplish is a route that routes "http://servername/home/default.aspx" ...
1
vote
1answer
688 views
asp.net mvc maproute
Greetings,
I have a problem with link in mvc application. When I run it via Visual Studio it's ok. The link then is as follows:
...
1
vote
3answers
297 views
Custom objects as arguments in controller methods defined by MapRoutes
Consider this MapRoute:
MapRoute(
"ResultFormat",
"{controller}/{action}/{id}.{resultFormat}",
new { controller = "Home", action = "Index", id = 0, resultFormat = "json" }
);
And it's ...
0
votes
1answer
17 views
Ugly url in mvc3-how make it nice looking?
Have an action in Ideas controller in my aplication:
public ViewResult NewIdeas(int numberOfPage = 1)
that action "produces" url like that:
/Ideas/NewIdeas/?numberOfPage=1
it's quite ugly-it ...
0
votes
2answers
69 views
How to ASP.NET MVC3 Route to accept any type of file (Dot in URL)
ASP.NET MVC 2 Issue - Dot in Route gives an example to allow dot (.) in url and allow .svc file.
My question is, how to allow any kind of file, I tried:
<httpRuntime ...
0
votes
2answers
282 views
asp.net MVC 3 RegisterArea with multiple optional id's not working
I am trying to capture multiple optional parameters in an ASP.NET web application. When I define the MapRoute in RegisterArea(), it is breaking the Html.ActionLink() methods.
The following code ...
0
votes
2answers
232 views
ASP.NET MVC Routes Rest Standards URL Parameters
Having a bit of a nightmare, hopefully I'm just being stupid.
I have the following controller actions:
<HttpGet()>
Function News() As ActionResult
End Function
<HttpGet()>
Function ...
0
votes
1answer
359 views
ASP.Net MVC: Map route according to parameter value
I'm trying to create a wizard-like workflow on a site, and I have a model for each one of the steps.
I have the following action methods:
public ActionResult Create();
public ActionResult ...
0
votes
1answer
425 views
MVC MapRoute not routing with required parameter
I'm wanting the URL to my MVC application to be like:
www.site.com/Bob
Which would in turn 'redirect' to Home/Details/Bob.
I've set up the following MapRoute:
routes.MapRoute( _
Nothing, _
...
0
votes
1answer
349 views
Map URL to empty route in ASP.NET MVC 2 from URL. URL displays blank page
If URL is
http://localhost:54027/test1/test2/home
It shows home page
If URL is
http://localhost:54027/test1/test2/
It shows BLANK page
Following are the routes we have used
routes.MapRoute(
...
0
votes
1answer
151 views
MapRoute (Asp.Net MVC 2.0 .NET 4.0)
is there any possibility to create a maproute which would use always one method and it won't be necessary to put it in address?
I mean I've got controller with one method (Index) and it displays ...
0
votes
1answer
235 views
ASP.NET MVC URL Routing problem
i have defined a route as below:
context.MapRoute("SearchEngineWebSearch", "search/web/{query}/{index}/{size}",
new
{
...
0
votes
3answers
508 views
ASP.NET MVC MapRoute problem
Default ASP.NET MVC project has one MapRoute like
routes.MapRoute(
"Default",
"{controller}/",
new { controller = "Home", action = "Index" }
);
And ...
0
votes
2answers
403 views
MapRoute problem in ASP.NET MVC (for IIS6)
I have a problem in routing on the server (IIS6). It works OK on the development environment:
routes.MapRoute(
"FindCities",
"FindCities/{state_id}",
new { controller = ...
0
votes
2answers
240 views
MapRoute not working, URL still says page not found?
Maybe I am confused here but I am trying to go to http://ryan.local.myappname.com/Order
other things such as /Home work and I checked and found this routes.MapRoute thing and added this:
...
0
votes
1answer
128 views
ASP.NET MVC customization - Inherit or alter Framework
If you wanted to alter the way that routes were processed can you do that in a MVC project OR do you have to alter the MVC Framework?
For example lets say you have the standard code in RegisterRoutes ...
0
votes
2answers
249 views
How do I set up a universal controller in ASP.NET MVC?
I know it's not perhaps in the true spirit of MVC, but I just want to have a single global controller that always gets called no matter what the url looks like. For example, it could be:
...
0
votes
2answers
3k views
maproute, querystings and mvc
I have two routes:
routes.MapRoute(
"FetchVenue",
"venue/fetchlike/{q}",
new { controller ...