The process of taking a URL, via ASP.Net, and caching portions into a RoutingTable available to all pages.

learn more… | top users | synonyms

0
votes
1answer
21 views

Redirecting route in ASP.NET WebAPI

This is ok: GlobalConfiguration.Configuration.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{action}", defaults: new { id = ...
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
0answers
24 views

Returning different page content using DelegatingHandler

I was wondering if doing a "redirect" into a subclass of DelegatingHandler would be possible. I'm going to explain with an example: My route, in Global.asax, is as follows ...
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 = ...
0
votes
0answers
13 views

error in asp.net routing code when navigating to localization

I have this code in my global.asax routes.Add("ar", new Route("ar/{*path}", new GlobalizationRouteHandler(CultureInfo.GetCultureInfo("ar-AE")))); routes.Add("nl", new Route("nl/{*path}", new ...
3
votes
1answer
72 views

What Causes the browser URL line to get filled with Route in MVC4 asp.net

When I go to my home page http://localhost:5119/ it redirects to http://localhost:5119/Home (that is what shows in my browser url bar, I want it to not show /Home) I understand that is ...
0
votes
0answers
39 views

asp.net routing error page

Does anyone know what the best way would be to deal with error pages using ASP.NET (not MVC) Routing? I have routing set up and working well, however if i visit a page which does not exist i get the ...
0
votes
0answers
21 views

Routing causes Report Viewer to not display with asp.net

I have an issue where the ReportView control appears disabled and shows not records when using routing. If I turn off the routing code I can access the page and it looks fine, but when I turn on ...
0
votes
1answer
39 views

What do we have to do in order to push configurations like URL route mappings to ASP.NET MVC Views to an XML file?

All: We started off our project using ASP.NET Web Forms. We decided to integrate ASP.NET MVC 4 into our project. We would like to leave the existing .aspx ASP.NET Web Form pages as it is already. ...
9
votes
2answers
120 views

Stackoverflow style URL (customising outgoing URL)

If I navigate to the following stackoverflow URL http://stackoverflow.com/questions/15532493 it is automatically appended with the title of the question like so: ...
0
votes
0answers
46 views

Page.GetRouteUrl in LayoutTemplate of listview?

I am tried to create table structure with header,body,footer in listview which works fine. But in footer which is in layouttemplate, i tried to add below code which gives error. ...
1
vote
1answer
45 views

Routing in ASP.NET Web Site

I would like to know if Routing features works on ASP.NET web sites. I know it works on Web Applications, registering my routes inside the Application_Start method. void Application_Start(object ...
0
votes
0answers
64 views

Route testing with WebApiContrib

I have a WebApi project that I am trying to test. I have a controller - public class UserController : ApiController { public string Get() { return "foo"; } } I need to test the ...
0
votes
0answers
81 views

Asp.Net MVC: Reusing values for segment variables when generating outbound URLs

When routes are matched to the outbound URLs, the routing system will try to find values for each of the segment variables in route's URL pattern by also looking at the values from the current ...
0
votes
0answers
159 views

WCF REST + Routing + Basic Authentication + Custom Authentication is not working

Diving into WCF RESTful Services and coming across the following error: > Server Error in '/' Application. IIS specified authentication schemes 'None', but the binding only supports specification ...
0
votes
1answer
70 views

Custom Route Not Working in ASP.NET

I have been trying to following this http://msdn.microsoft.com/en-us/library/cc668202(v=vs.90).aspx I have created add this to my web.config: <modules> <remove ...
0
votes
3answers
93 views

Routing does not recognize route if space appear in route value as '+' char

I faced the following problem. May be someone found this strange behavior too. I have the following route definition in my global.asax.cs: routes.Add(new Route("/module/{searchTerm}", new ...
0
votes
1answer
190 views

ASP.NET Webform Routing

We are building a products site and are using Routes in ASP.NET WebForms C#. We currently have routes.MapPageRoute("", "{categoryName}", "~/Category.aspx"); routes.MapPageRoute("", ...
0
votes
2answers
149 views

ASP.NET route to mvc or api by subdomain

Our application have 2 domains (www | api).mydomain.com How can I route requests to api.mydomain.com to api controllers and www to mvc controllers? Thank you
0
votes
1answer
102 views

Using a wildcard in a global.asax MapPageRoute

I would like to be able to use the global.asax file to redirect to a page regardless of what parameters come before a specific reference (the parameters can be ignored). ...
0
votes
1answer
70 views

.net mvc routes with parameter proceeding action

I want to know if this is possible (it seems like it should be) I would like to have a route such as: /events/{id}/addcomment where the {id} is a param to be used to identify the event to add a ...
0
votes
0answers
159 views

System.Web.Routing vs HttpModule Url Rewriting Performance

Our development team is currently working on a new implementation for an ASP.NET website and would like some feedback about the performance differences between .NET's new System.Web.Routing with ...
1
vote
1answer
163 views

How can I set up routing in ASP.Net MVC to have requests for html files bypass the StaticFileHandler and be handled by the routing engine?

Can I (without using runAllManagedModulesForAllRequests = true) route urls with *.html into default controller/action mode? I need all requests to www.myhost.com/any/any/abcd.html route to ...
0
votes
1answer
238 views

asp.net web api routing design (multiple routes)

I'm currently designing a REST api with ASP.NET Web API. I want to provide methods like these (http methods are irrelevant - should work for all): /api/client /api/client/CID1234 (CID1234 = Id) ...
1
vote
0answers
211 views

Custom route MVC4 with constraints

I have an MVC 4 application that i want to create custom route to respective controllers. The goal is simply to not show the action name in the url, rather only show controller name and parameters. ...
2
votes
1answer
333 views

How to use URL Rewrite in ASP.Net

I am trying to use a simple URL rewrite. I am trying shorten the URL on page load to its simplified version (no file extension). I am not using any query string in my URL. Here is the current ...
3
votes
1answer
297 views

ASP.NET MVC Routing: How to make my MVC URL's have .aspx extension?

I want an MVC app to have .aspx page URLs even though there will not be any physical aspx pages and I will be using the Razor view engine. 1) Is it possible to define such a route? 2) What would ...
0
votes
2answers
129 views

ASP.NET MVC: Routing issue

So I have this controller action: public ActionResult Categories(int typecode) { // code removed } this route: routes.MapRoute(null, "{controller}/{action}/{typecode}", new { controller = ...
1
vote
1answer
137 views

ASP.NET Routing in rest service not working in IIS

I created a simple rest service with routing enabled. The routing is properly working when i run it locally i.e using asp.net development server. But when I deploy the application in IIS (IIS 7.5) ...
0
votes
0answers
156 views

ASP.NET 4.0 routing Webforms using a masterpage

I have been through almost all of the tutorials, MSDN, Scott GU, 4Guys,multiple SO threads, and so on. But nobody seem to cover this problem?! My problem is that "RouteData.Values" values is always ...
2
votes
2answers
1k views

“True” REST routing via MVC 4 Web API

Long-time lurker, first time poster so go easy on me ;) TL;DR Summary: Can I configure MVC Web API routing for HTTP GET, PUT & DELETE? I've been looking into replacing our old Data Access Layer ...
1
vote
2answers
346 views

ApiController GET Action naming

I have an ApiController with multiple GET Actions. The problem is that I wan't to name my actions without "Get" in the start of their names. For instance, I can have an Action named "GetImage" and ...
2
votes
1answer
97 views

Duplicate routes need to fallback to next matching route when no Action is found

I have a situation where I need to override methods in an old HttpHandler API in an ASP.NET WebForms application. I'm using WebAPI as the base for the new API and it's been working great except I need ...
0
votes
0answers
138 views

ASP.Net 4.0 Routing issue with path

I am struggling with two issues regarding asp.net webform routing in 4.0 version. First issue is with the path on local server same path works fine for other project & creates path issue in local ...
4
votes
1answer
293 views

MVC4 - route values not being remembered

Here's my route setup: routes.MapRoute( name: "MyRoute", url: "Secret/{source}/{display}/{sort}/{tags}/{filter}/{pageSize}/{page}", defaults: new { controller = "Secret", action = ...
0
votes
0answers
12 views

Implement Default Routing Patterns to all sites

In reference to Page Routing logic. Can i implement a default Routing Pattern, more specifically Ignore certain patterns from ALL sites via the IIS default web.config?
0
votes
1answer
39 views

What is wrong with my .net routes?

I have followed a few tutorials online and they all seem to show the same logic for .net routing using ASP.net web forms. When I execute the URL below I get a 404 error. Test.aspx is in the root ...
0
votes
1answer
197 views

ASP.net 4.0 Routing not working with main domain name

I have a simple routing for my website news section. Routing works fine for almost all URL's like http://www.abc.com/Default.aspx http://www.abc.com/Default.aspx?PageId=3 ...
0
votes
0answers
22 views

Default route being ignored

routes.MapPageRoute( "account-login", "account", "~/account/construction.aspx" ); The stupid thing keeps trying to request ...
-1
votes
2answers
129 views

Automatically preserving “id” argument across different actions on the same controller in ASP.NET MVC

My goal is for all methods of my CompanyController to share the same "id" parameter without having to explicitly pass it via RouteValueDictionary, as that is cluttersome and error-prone. So for ...
0
votes
2answers
71 views

How to configure Azure to use domain name instead of *.azurewebsites.com?

When I go to my domain, it redirects to my Azure subdomain (x.azurewebsites.com). How can I fix this so that my domain doesn't redirect? My config file: <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
0answers
119 views

MVC3 Routing with regular expressions

In our current project we have url's like {controller}/{action}/param1/param2/...param-N and {controller}/{action}/param. I am able to get the routing for second type as it is looking ...
0
votes
0answers
114 views

WCF Data Services and Dynamic Routing - odata v3 not supported?

So, we have an odata service We have URLScan set up to block urls with a . in the path our original endpoint was environment-odata.company.com/Channel.svc we set up a route for Channel so as to ...
1
vote
1answer
252 views

Force case-sensitive routing in ASP.NET MVC

This question has been asked in a similar but not identical fashion (and not resolved to my satisfaction) previously on Stack Overflow and elsewhere. Coming from a linux-world, I want to use ASP.NET ...
0
votes
1answer
176 views

ASP.NET Routing block asp.net menu control from showing horizntal sub menus

I am working on a project which is complete & while testing & found that ASP.NET Routing blocks menu from showing up on pages with friendly URL (ASP.Net 4.0, C#) Routing Code ...
0
votes
0answers
65 views

asp.net routing issue in ablecommerce cms

I have a website built in AbleCommerce .net CMS. when i run it in from visual studio in browser it goes to http://www.livewebsite.net:10508/WebSite/Login.aspx instead of localhost:port/website/ i ...
0
votes
0answers
196 views

Routing using ASP.NET 3.5.1 using Web Forms

I have been attempting unsuccessfully to implement Routing using ASP.NET 3.5.1 using Web Forms. I have followed a number of similar tutorials but received the same error 'The type or namespace name ...
2
votes
2answers
1k views

Setting asp.net MVC4 web api route url in javascript is returning empty string

Here is the code that I am using to set the api url: var clientUrl = '@Url.RouteUrl("ApiControllerAction", new { httproute="", controller = "Client"})'; In my route.config the route looks like ...
0
votes
1answer
115 views

Asp.net Route /something/{any url} to /{any url}

This thing is driving me mad: browser url -------> phisical path http://somedomain/routeName ----> ~/Default.aspx WORKS http://somedomain/routeName/anypage.aspx ----> ~/anypage.aspx WORKS ...
2
votes
1answer
123 views

ASP.NET MVC: How to force all links to goto 1 page?

I am trying to figure out how i can create a route configuration so that all URLS will goto the same VIEW (Page). CUrrently of course if i do for example /Products/Id Then this would look in the ...

1 2 3 4 5