Questions about routing within ASP.NET (including MVC).
0
votes
0answers
17 views
mvc content route fall through
I need a routing strategy for a primarily content driven site.
We don't want to use .aspx or .html as file extensions, but have a controller ("ContentController") perform the work of taking the html ...
0
votes
1answer
20 views
Confusion about VirtualPathProvider, bundling, embedded static files an views
I am trying to share SOME static files(css, images, scripts) and SOME views from separate libraries to few MVC applications, here is my directory structure:
Solution
MyContent
css
...
1
vote
3answers
63 views
Hide a QueryString parameters, how?
I have a url: like this one: http://www.example/about/49.
I want it to be seen as http://www.example/about/, but I must have this parameters passed as QueryString parameters.
Is it possible ?
0
votes
1answer
22 views
Url with email address in ASP.NET MVC4
I have a situation where I'm using URLs that could possibly contain email addresses. For example:
http://MyUrl.com/Edit/Mike
or
http://MyUrl.com/Edit/bob@whatever.com
According to this ...
0
votes
1answer
61 views
How to access the current HttpRequestMessage object globally?
I have a method which creates an HttpResponseMessage containing an Error object which will be returned based on the current request media type formatter.
Currently, I have hardcoded the ...
0
votes
0answers
23 views
Custom file extension handling in MVC4
I'm trying to handle my specific file extensions with my custom http handler.
The dll I'm using was working perfectly for webforms, so I want to reuse it for mvc applications.
I added handlers to ...
2
votes
1answer
102 views
@Html.Action MVC 4 with QueryString Parameters
I have a question related to the Html.Action in MVC 4
I want to pass some Querystring Variables with it to the Details view
The code I have now is
System.Text.StringBuilder MobileData = new ...
1
vote
1answer
36 views
How to know when Web API Routing Engine Doesn't Find a Matching Service?
I'd like to log the requests to my Web API application that results in 404 (which means the routing engine couldn't find a matching service).
How would that be possible?
For example, if I have the ...
-1
votes
1answer
26 views
Public action method was not found on controller
I have the following controller method:
public ActionResult GetResults(string viewToReturn, int resultsPerPage,
string classification = null, string sessionId = null, int? lastId= null)
{
...
0
votes
1answer
21 views
String parameter not being populated using URL routing
URL rewriting issue. When i call me url using the following link
http://localhost:12719/product/18
it works fine the product 18 links to the parameter. However when i call it using the following.
...
0
votes
1answer
20 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
53 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
20 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 ...
0
votes
2answers
24 views
MVC QueryString with Guid returns 404
I have a problem on my Development server....
On my local machine everything works....
This is the issue:
I have a Page that looks like this:
@using Skipstone.Web;
@using Skipstone.Web.Providers;
...
0
votes
0answers
12 views
Exclude area path in route constraint
I have a registered a custom route but I need to want it to apply to request inside my area called UI. I have tried to add something like this but it doesn't work.
_constraints = new ...
1
vote
2answers
41 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
3answers
52 views
My routing isn't working
I have a View folder structure like this:
Views
Rooms
Resorts
Index.cshtml
Suites.cshtml
.....
I want the controller folder structure to match
...
0
votes
0answers
11 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
1answer
16 views
MVC database views and Url problems
I have a question that I hope someone will know the answer to.
Some of my views are stored in a database and they don't follow the MVC routes, they allow full URLs like:
...
1
vote
0answers
31 views
MVC URL RedirectToAction URl has variable and its parameter in Url
I am Redirecting my Action to another urls woth optional parameter and passing variable to the controller
RedirectToAction("action", new { a, c, s,ds});
but my urls loosk like this
...
0
votes
2answers
32 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",
...
2
votes
3answers
39 views
MVC 4 catch all route never reached
When attempting to create a catch all route in MVC 4 (something I've found several examples of, and based my code on) it returns a 404 error. I'm running this on IIS 7.5. This seems like a straight ...
0
votes
1answer
29 views
MVC 3 custom routes - Redirects, Action, ActionLink have incorrect url
I have a certain folder structure I have to follow (/countrycode/language/) so I have my routes set up like below
routes.MapRoute(
"en-us",
"us/en/{action}/{id}",
new { Controller = ...
0
votes
0answers
78 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
1answer
45 views
Routing the right way in .NET MVC4
I'm developing an admin panel and I have created a new area called "Admin" to start. Now in my AdminAreaRegistration.cs file the routing is just like this
context.MapRoute(
"Admin_default",
...
0
votes
1answer
38 views
ASP.NET MVC Routing configuration giving Http 302 Object moved to
I think I might be having a bit of trouble with my MVC routing. Note, I'm using ASP.NET MVC 4 with Razor Views.
I have my routes registered as follows:
routes.MapRoute(
"Person",
...
0
votes
0answers
26 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
87 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
23 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
38 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
0answers
14 views
Call to Url.RouteUrl not working on deployed website
In an ASP MVC3 project a call to:-
<h2><a href="@Url.RouteUrl("_ScientificPrograms", new { idProgramaSeleccionado = @programa.Id, nombrePrograma = @programa.NombreProgramaUrl(), ...
0
votes
1answer
31 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}",
...
0
votes
1answer
73 views
How to remove ? and = from MVC url
Hi this my ActionLink
@foreach (var item in Model)
{
<div>
<h3>
@Html.ActionLink(item.Title, "Post", new { postId = item.Id, postSlug = ...
2
votes
2answers
37 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
28 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
17 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 ...
1
vote
1answer
51 views
asp.net mvc4 default controller on iis8
I have an ASP.NET MVC4 web application originally developed on IIS 7.5. RouteConfig:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
AreaRegistration.RegisterAllAreas();
routes.MapRoute(
...
2
votes
2answers
55 views
Is there a way to tell routing that my default action name is equal to the HTTP Action Verb?
I've looked through this document on MSDN and can't come up with the answer.
Considering that I have a route defined like this:
config.Routes.MapHttpRoute(
name: ...
0
votes
2answers
45 views
ASP.NET MVC4 Routing - access controllers and actions with identical names using different routes
Using ASP.NET MVC4 Routing:
If I'd like to setup a Default routing configuration for the main section of the site:
routes.MapRoute(
name: "Default",
url: ...
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
157 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
0answers
28 views
Adding a namespace to a custom route
I can't seem to figure out how to add a namespace to a custom route I have the following
routes.Add("DomainRoute",
new DomainRoute("{store}.domain.*",
...
0
votes
2answers
30 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
44 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
27 views
Restful routing, not showing page when using areas
I'm experimenting with the documentation of http://www.restfulrouting.com/. When I open my routedug the links are like i want. But when I click the link i get a 404. I have the following structure
1. ...
0
votes
1answer
39 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
72 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 ...




