0
votes
1answer
18 views

After a change to the default routing map my actionlinks stopped working

I made a change to my routing map which is following now: routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}/{title}", defaults: new { ...
0
votes
1answer
38 views

ASP.Net MVC4 Routing not working - reserved word?

In short, I have an MVC web app that has a proxy class to marshall requests to another web app under the context of the logged in user. This all works fine except that some of the outgoing links ...
0
votes
0answers
19 views

Attempting to 301 redirect .aspx legacy URLs using routing - not redirecting if url matches current URL pattern

I'm developing a new website and am trying to permanently redirect the old URLs to the new equivalent ones. The routing should pick up on any url including ".aspx". This is working fine, except for ...
1
vote
2answers
37 views

ASP MVC Routing - How to change the name of the default id parameter, while keeping the default route intact

In my ASP MVC web application, my controllers often have action with a "name" parameter, like this: Function Consult(name As String) As ActionResult ..... Return View() End Function I ...
0
votes
0answers
8 views

MVC RedirectToRoute Throws an error No Matching Route FOund

Im Redirecting my action Using RedirectToRoute with parametes and i defined the route in global.asax return RedirectToRoute("RouteName", new { action = "Search", Id, Customer, ...
0
votes
2answers
29 views

MVC routing with “optional” routes

I'm a bit baffled by how MVC is figuring out my routing details. Let me see if I can explain this right. So ... given that I have the default route ... routes.MapRoute( "Default", ...
0
votes
0answers
62 views

ASP.NET MVC 4 routing corrupting a decimal json value

I have a method in a controller: [HttpPost] public virtual JsonResult Add(AddItemModel request) This receives an AJAX call. The JSON request sends a serialized version of the ...
1
vote
1answer
33 views

Why is my area routing failing for one controller but not another?

I have an MVC 4 site with the usual default routes defined (including an API route), plus an area for administration functions, which has its own route. The routing configuration looks like this: ...
0
votes
0answers
26 views

prevent users from getting partials

Angular Route: angular.module('AMS', []). config(['$routeProvider', function ($routeProvider) { $routeProvider. when('/dashboard', { templateUrl: '/Dashboard', controller: ...
0
votes
0answers
22 views

Generate virtual path but not like querystring parameter

I try to generate base url for my routes. Before my routes are this : public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { ...
0
votes
1answer
70 views

The controller for path '/Home' was not found or does not implement IController

I've searched the internet high and low and checked all previously answered questions with the same title and I cannot figure this one out. I return RedirectToAction("Index", "Home") from the ...
0
votes
1answer
22 views

Routing, hitting wrong action

I have two actions, and whenever I explicitly call the second one, the first one still gets called. I need to be able to write in mysite.com/api/Awesome/GetSomeExamples, without it always triggering ...
2
votes
1answer
37 views

How can i get an ID as parameter from an URL

I want to route the following URL; /anything/anything-v43243-anything How can i route this to a specific controller and action with that id as parameter? The text "anything" has to be a text with ...
0
votes
1answer
28 views

Setting Dynamic Base Url to route to in a multi-tenant MVC website

I want to create MVC 4 Multitenand Application . My question is how can I set base url in routing. Here are my routes : routes.MapRoute( name: "Default", url: "{portal}", ...
2
votes
2answers
34 views

ASP.NET MVC routing: 404 with more than one parameter

I got a pretty basic ASP.NET MVC (1) routing qeustion but I couldn't find an answer by now. I want to call an action method which has three parameters but I'm running into an 404 when I call it with ...
0
votes
2answers
27 views

Map legacy htm files to equivalent action

I was trying to do the following: public class RouteConfig { public static void RegisterRoutes(RouteCollection routes){ { //other stuff routes.MapRoute( name: ...
0
votes
0answers
16 views

Routing with images src in MVC 4.0

I am using MVC 4.0 and stuck in an issue of image URL routing. I have images that take their names from the db and i have stored the file physically So now my image tag looks like `<img ...
0
votes
3answers
37 views

Custome MVC Url Rout to display mixture of Id and UrlSlug

Hi ' I'm gonna to apply the mixture of Id and slug as a url in my blog url like this http://stackoverflow.com/questions/16286556/using-httpclient-to-log-in-to-hpps-server to do this I have defined ...
1
vote
1answer
119 views

ASP.NET MVC4 Routing - Multiple routes to the same location

I am in the process of setting up a Single Page Application (SPA) and would like to setup, currently two routes. For instance: Route 1: http://localhost - this is the default route which requires ...
0
votes
2answers
25 views

ASP.Net MVC - Create Custom Routing?

I'm trying to create a custom routing. Here is what I've tried but does not work, what am I doign wrong? Expected Call: MyWebsite/Friend/Respond/55/4 routes.MapRoute( name : "Friend", ...
1
vote
3answers
41 views

MVC Changing a URL route

I just watched the Pluralsight video on URL routing in ASP.NET MVC 3. I'm still a bit confused. That image shows how my views are set up. I have a controller for each view. Perhaps I misunderstood ...
1
vote
0answers
35 views

How to set default ApiController in HttpConfiguration.Routes?

the api routing configuration from the template is this: public static void Register(HttpConfiguration config) { config.Routes.MapHttpRoute( name: "DefaultApi", ...
0
votes
1answer
38 views

Routing with dashes and non-english characters

I have a specific routing need that I can't get to work. I've found quite a few answers here on StackOverflow that takes me a bit on the way, but not all the way. Im naming my controllers and actions ...
1
vote
0answers
71 views

Error in production only when the user first hits the login screen

In production only, when the user hits our login screen we get the following elmah eror System.NullReferenceException: Object reference not set to an instance of an object. Generated: Wed, 24 Apr ...
0
votes
0answers
55 views

Set as start page with full url in web config mvc

I am using set as sate as start page in webconfig and rout config my web config code is <forms loginUrl="~/Account/Login" defaultUrl="~/Account/Login" timeout="30" protection="All" /> And ...
0
votes
0answers
25 views

Image path not refer in default page

I set http://xxx.com/yyy/Account/Login as default page in my MVC project web config as <authentication mode="Forms"> <forms loginUrl="~/Account/Login" timeout="2880" /> ...
1
vote
3answers
83 views

ASP.NET Routing where two controller actions have the same number of parameters

We have a route config like so: public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "About", ...
2
votes
1answer
125 views

ASP.NET MVC Custom Route class - Can't get route data

I'm trying to implement my own route class, inheriting from the default Route. This is what my custom route class looks like: public class FriendlyRoute : Route { public FriendlyRoute(string ...
1
vote
1answer
56 views

Registering Multiple Routes in MVC asp.net

I want to do make several map route in MVC that both like be same. localhost:1010/abcd/home/index localhost:1010/home/index/abcd id=abcd controller=home action=index I used bellow code but it ...
0
votes
0answers
33 views

WebConfigurationManager when using custom routes in ASP .NET MVC

When I'm using custom routes, WebConfigurationManager.AppSettings doesn't seem to return the correct data for the real virtual directory. What I mean is, if I go to here, where MyApp/MyDir matches ...
0
votes
1answer
105 views

ASP .NET MVC 3 same route for multiple actions based on criteria

Is it possible in ASP .NET MVC 3+ to have one same route for multiple actions based on specific state ? For instance, on LinkedIn or some similar sites, same route http://site-domain/home is used ...
1
vote
1answer
40 views

MVC 4 - How do I properly execute a URL in a View?

I have an MVC 4 View. One of the properties is 'Url'. I'm displaying the value of the URL in a field in this view and when a user clicks on it, I'd like to execute the URL. I have this code: <div ...
0
votes
1answer
19 views

Mvc routing in for multiple controllers

i have two routes in my global file. the route for the propertydetails is working fine but it doesn't works for the booking My links used are. Any idea why its not working ...
1
vote
2answers
98 views

asp.net mvc. Routing and Url building

Does any body knows how to hide some parameters in url? For example you have a url parameter "culture". It can be "en, fr, it". By default your site renders in "en" culture and we don't wont to show ...
1
vote
1answer
20 views

The Same Action Called Unexpectedly

The layout of this ASP.NET MVC application looks like the following (this is a mobile web app): Page 1 is question 1 -> Submit the form and return Page 2's View Page 2 is question 2 -> Submit the ...
0
votes
0answers
65 views

RegisterRoutes and the MvcSiteMapProvider MVC 4

Is it prossible to parse all the nodes of my MVC.sitemap in the RegisterRoutes Method? When I try I only see the root node (home). There are no childs ... here's my sitemap. <mvcSiteMap ...
0
votes
1answer
104 views

IIS 7.5 MVC4/.NET4.5 Nothing but the default page loads

... everything else (scripts, css, other pages) return a 404 error. This works on my DEV machine under IIS Express so I'm assuming I've configured IIS 7.5 incorrectly, but nothing leaps out at me. ...
3
votes
1answer
76 views

Asp.net mvc api with multiple gets and parameters

Greatings, I have a problem with my asp.net mvc4 research project. I've tried to create apicontroller with multiple get actions and some of them with parameters, others - without. my api public ...
3
votes
1answer
61 views

ASP.NET MVC. How to suppress showing default culture in URL?

here is question. I have an localized asp.net mvc website. Localization done by next steps: 1. for each route I automatically add an {culture} url segment with default value to "ru". I want my urls ...
0
votes
2answers
38 views

Mvc route is not taking default values

I have two routes routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = ...
0
votes
2answers
91 views

URL Routing C# mvc and Web Forms

So I have a webforms and an mvc application combined and am trying to get things routed correctly. I have the default routing working as expected, but when I click on an actionlink in one of my views, ...
0
votes
1answer
48 views

cshtml / view without an action method

Can I serve a cshtml page as a view without writing an action method? So, if I have a controller called Help and a view called Money.cshtml I want to access it as localhost/help/money without writing ...
-2
votes
1answer
53 views

Strange behavior of the application

I started a new project with VS2010, but I'm finding some strange behavior of this project are: I have the controller X, and in doing: http://localhost/DataBase/ is giving "the resource can not be ...
1
vote
1answer
34 views

Ambiguous action method

For a project I'm currently working on, I currently have 2 separate instances of users (might increase later): CorporateCustomer and PrivateCustomer. Both inherit from the abstract class Customer. To ...
0
votes
1answer
75 views

Removing a controller name from a URL in MVC4

I'm dynamically constructing URLs to pass to a jQuery button click event handler. The URL comes from a modal window definition: <div class="modal hide fade in" id="modal-view-tenant-profile" ...
1
vote
1answer
53 views

How can I route requests to a page controller for routes that don't exists in ASP.NET MVC 4

How can I route requests to a default PageController for routes that do not map to a controller or action? But for routes that do match a controller or action, have those behave as normal, using ...
2
votes
2answers
149 views

MVC4: url routing with email as parameter

I have this url which works absolutely fine on my VS web server http://localhost:4454/cms/account/edituser/email@domain.com (works) but when I publish this site to IIS7.5 , it simply throws 404. ...
0
votes
2answers
82 views

ASP.NET MVC URL Routing with ControllerName/ExampleID

i'm getting this error when i'm navigate browser to url: localhost:10793/RealEstates/10 this my RouteConfig code: public class RouteConfig { public static void ...
3
votes
1answer
65 views

Using url values as variables in route values

I want to declare multiple versions of an API inside different controllers in ASP.NET MVC. Is it possible to do something like this? routes.MapRoute( "Default", // Route name ...
1
vote
2answers
41 views

Where MVC select routing?

I use MVC4, I look for event handler in which is made decision about usage route? When this event happend? There is registration all routes (in Application_Start() event) ...

1 2 3 4 5 27