Tagged Questions
The asp.net-routing tag has no wiki summary.
14
votes
6answers
7k views
ASP.NET MVC, Url Routing: Maximum Path (URL) Length
The Scenario
I have an application where we took the good old query string URL structure:
?x=1&y=2&z=3&a=4&b=5&c=6
and changed it into a path structure:
...
9
votes
3answers
214 views
ASP.NET routing: Literal sub-segment between tokens, and route values with a character from the literal sub-segment
The reason I'm asking is because IIS protects certain ASP.NET folders, like Bin, App_Data, App_Code, etc. Even if the URL does not map to an actual file system folder IIS rejects a URL with a path ...
6
votes
2answers
102 views
Why is this route parameter tacked onto the querystring?
I have an ASP.NET MVC 3 application that records a user's pedometer entries. A user can view all most recent pedometer entries by visiting /Pedometer and can filter by year, year/month, or ...
6
votes
1answer
314 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
5answers
2k views
Can ASP.NET Routing be used to create “clean” URLs for .ashx (IHttpHander) handlers?
I have some REST services using plain old IHttpHandlers. I'd like to generate cleaner URLs, so that I don't have the .ashx in the path. Is there a way to use ASP.NET routing to create routes that ...
6
votes
4answers
463 views
How to route tree-structured URLs with ASP.NET Routing?
I would like to achieve something very similar to this question, with some enhancements.
There is an ASP.NET MVC web application.
I have a tree of entities.
For example, a Page class which has a ...
5
votes
2answers
572 views
Optional route parameters in ASP.NET 4 RTM no longer work as before
I upgraded my project to ASP.NET 4 RTM with ASP.NET MVC 2.0 RTM today.
I was previously using ASP.NET 3.5 with ASP.NET MVC 2.0 RTM.
Some of my routes don't work suddenly and I don't know why. I'm ...
5
votes
2answers
152 views
How does asp.net mvc figure it out?
How is it that I can create a method in the controller and just put some arguments and it figures it out after I click on a form submit? Under the hood, how does it find the right method and how does ...
5
votes
5answers
5k views
ASP.NET routing on IIS 6
I have created a basic site using ASP.NET routing according to Mike Ormond's example "Using ASP.NET routing Independent of MVC". This works fine on my local machine running the built-in web server.
...
4
votes
1answer
347 views
ASP.NET MVC: Routing hierarchy URL
How can I make routing for this?
URL: /category/main/sub/ or /category/main/sub1/subsub/
I want to have /main/sub/ and /main/sub1/subsub/ as parameters in Index action method of CategoryController.
4
votes
2answers
182 views
A word that do so the ASP.NET (MVC) Routing crashes
I read about a string/word that did so the Routing crashed but I can't remember which word/string combination it was.
Example:
...
3
votes
2answers
351 views
Run two web sites on same port on IIS 7.5?
We need to be able to run two versions of one ASP.net web application on the same intranet server and port number, but with one mapped to / and the other mapped to /experimental (not real names, but ...
3
votes
1answer
192 views
How to route lower-case URLs ('questions/add_to_favorites/123') with underscores in ASP.NET MVC2?
ASP.NET MVC 2 controllers and actions use UpperCamelCase.
For some reasons many big sites, including SO, use lowercase (with underscore) for controllers and actions in the urls. Examples:
...
3
votes
2answers
704 views
ASP.NET MVC Route Default values
i defined two routes in global.asax like below
context.MapRoute("HomeRedirect", "",
new
{
controller = "Home",
...
3
votes
2answers
369 views
Scrambling URLS for dynamic data
What is the best method to obfuscate the urls created in Dynamic Data?
eg \Products\List.aspx?ProductId=2 could become
\Products\List.aspx?x=UHJvZHVjdElkPTI=
where "ProductId=2" is base 64 ...
3
votes
1answer
528 views
Advanced ASP Routing tutorials and examples
The one of major hurdles I seem to be having recently is getting my head around some of the more complex routing requirements for some MVC based applications I've been developing.
I'm having problems ...
3
votes
1answer
416 views
ASP.NET URL Routing on root in IIS 6.0
I enabled a routing on ASP.NET web application running IIS 6.0 using
RouteTable.Routes.MapPageRoute("Simple", "{testvalue}", "~/Test.aspx"); in Global.aspx.cs
This works fine when I use ...
2
votes
0answers
93 views
How do I get ASP.NET WebForms Routing to route .asmx JSON calls properly?
I am attempting to implement multi-tenancy in a legacy ASP.NET WebForms app. I want the URL to indicate the proper client, like so:
http://example.com/client_name/Default.aspx
...
2
votes
1answer
89 views
Extension-less URLs: Url Rerwrite or Routing?
I would like to make my ASP.NET web page URLs without .aspx extensions. I can do it in two ways, use IIS7 URL Rewrite module or ASP.NET URL Routing. Which method to choose?
2
votes
1answer
33 views
Routing on IIS6 With Decimal In Route
I have a route in my MVC3 project that works perfectly fine locally when run through the debugger and through IIS7. However, our servers are IIS6 and when I move my application out I am getting a "The ...
2
votes
2answers
70 views
asp.net MVC routing problem
I had made a website bulkpedia.com
In this i had use ASP.NET Routing mechanism in the way
{type}/{query}
whenever there is a query that contains a period, it shows me a 404 error
e.g. ...
2
votes
1answer
290 views
Conditional ASP.NET MVC 3 Routing (With Areas)
Hurro.
I'm trying to achieve some conditional routing based on whether the current user is an admin or not. The system only has two modes, admin or non-admin and nothing more than this. I'm using ...
2
votes
1answer
357 views
AsP.NET 4.0 url routing
I am trying the new feature of .NET 4.0 - url routing but not able to fetch information passed in the url. Following is the code :
GLOBAL.ASPX.CS
protected void Application_Start(object sender, ...
2
votes
1answer
108 views
How to use ASP.NET Routing in a Quote of the Day Website
Good Afternoon,
A client is interested in creating an ASP.NET 2.0 website whose purpose is to serve up a "quote of the day". He wants the quotes on static content pages all attached to the same ...
2
votes
1answer
341 views
ASP.NET Routing (3.5) - How to handle multiple TLD domains?
Is it possible to have one asp.net web application that handles requests from two domains via asp.net routing? I need one TLD domain per language version pointing to the same app.
How to set up a ...
2
votes
2answers
321 views
ASP.NET MVC Hierarchy Url Routing
I have a problem
My route have an extra paramater after hierarchical category.
/2009/World/Asia/08/12/bla-bla-bla
asp.net mvc does not support this because my routing should be
...
2
votes
2answers
915 views
system.web.routing on a web server not working
I have read all these articles about how to make system.web.routing work but all these articles explains on localhost:port. I can get this working on the local machine, but as soon as I upload the ...
2
votes
2answers
3k views
Asp.net Routing, WebServices, and IIS7 Classic
I have a web forms app running on IIS7 Classic. It utilizes .asmx style web services for a client side heavy portion of the site.
We have been tasked with layering in "friendly urls" and decided to ...
2
votes
3answers
1k views
Web Form Routing - Cannot create an abstract class
Net 3.5 SP1 and attempting to implement a sample copy of http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx into a sample web application however I seem to be having some issues.
...
2
votes
3answers
1k views
Using ASP.Net 3.5 SP1 Routing with SharePoint 2007
I'm trying to setup some friendly URLs on a SharePoint website. I know that I can do the ASP.Net 2.0 friendly URLs using RewritePath, but I was wondering if it was possible to make use of the ...
1
vote
1answer
30 views
Can we use just the controller name and id parameter in URL for Asp.net MVC application
Suppose, I have a controller named category with an action method, Index which takes id as parameter.
Therefore, the URL appears like this : category/Index/foo. As you can see, the Index segment just ...
1
vote
1answer
38 views
Asp.net 4.0 url routing concatinating url
I'm using the .Net 4.0 framework and doing some url routing. This is not an MVC project, but a winform project. I've created two routes in the Global.asax like so:
routes.MapPageRoute(
...
1
vote
1answer
38 views
Construct URLs from Routes asp.net web form 4.0
i am using asp.net 4.0 webform project and routing. i need to know the actual page that's handling the request. suppose my routing url is like
http://mysite.com/product/audi
basically i have ...
1
vote
1answer
70 views
ASP.NET Caching Vary BY Param when we have ASP.NET Routing Values instead of Query String values
Normally we can do caching and make dependency on Request.QueryString values like
<%@ OutputCache Duration="15" VaryByParam="search" %>
The url for such may be like:
...
1
vote
1answer
65 views
ASP.NET Routing Interference Problems
I'm having a mind shattering problem with ASP .NET routing. I can't tell if this is a bug in Microsoft code or if I'm just using it wrong.
The scenario is basically this:
I have a custom route I ...
1
vote
1answer
183 views
ASP.NET Routing. How can i use Routing in a Generic Handler?
I tried to use ASP.Net's in the following generic handler, but i get this error at Page.RouteData
Reference to a non-shared member requires an object reference
What i am doing wrong?
<%@ ...
1
vote
1answer
58 views
Routes handling in ASP.NET
I am working in ASP.NET WebForms and C#.
I am trying to add routes for different pages. This is sample code from my global.asax which registers Routes
protected void Application_Start(object sender, ...
1
vote
2answers
2k views
ASP.Net Mvc 3 Url.Action method uses parameter values from previous request
When Urls are autogenerated using the Url.Action helper, if a page contains a line similar to
@Url.Action("Edit","Student")
is expected to generate a url like domain/student/edit and its working ...
1
vote
1answer
223 views
MVC: Route Get / Post to different controllers. How?
I am writing a MVC controller where I need to handle both, data return as well as a long poll "data has changed" like behavior from the SAME (!) url. NothingI can do about this - I am implementing a ...
1
vote
1answer
418 views
Redirect to another controller+ action without changing URL in ASP.Net MVC3
Note: Below is just a small demo sort to simulate what i am looking for:
Below are the urls format on my app that user can see
mydomain.com/cat/1 --display cat with id 1 |controller=Cat, ...
1
vote
0answers
267 views
ASP.NET 4.0, IIS 7.5, URL Routing: Infinite Loop when no page is specified
I've got a very simple app built in ASP.NET 4.0 which is using URL Routing. There are only two forms: Default.aspx and SubPage.aspx. It's not an MVC app. Just normal ASP.NET. When I simulate ...
1
vote
1answer
155 views
How do I redirect a route to another route in ASP.NET web forms?
I have routes like these:
routes.MapPageRoute("Survey", "Survey", "~/Survey/Survey.aspx")
routes.MapPageRoute("Letters", "About/Letters", "~/Pages/Letters/Letters.aspx")
How can I redirect a url ...
1
vote
2answers
149 views
Asp.net routing to mask out physical folder in path
To better organise my ASP.Net project I placed all my .aspx files in a folder called WebPages.
I would like to find a way to mask out the 'WebPages' folder out from all my URLs. So for example, I do ...
1
vote
1answer
340 views
ASP.NET Routing - GetRouteData does not work if path exists
I have a HttpModule which intercepts all requests and loads data from the database based on routing rules. However, I run into one problem all the time; GetRouteData only works if the path does not ...
1
vote
1answer
67 views
Only Serve Static Files From a Specific Directory via Code
I am looking for a code based solution to only serving static files from a specified directory using ASP.NET routing rather than specify a HttpHandler in the Web.config.
For example:
I have the ...
1
vote
3answers
292 views
Url routing problem with IIS7
Url routing and IIS7
03-24-2011 04:24 PM
Hi,
I have a query regarding Url Routing in asp.net 4.0 and IIS7. Below I have explained what is my website structure and how it is configured in IIS7.
...
1
vote
3answers
776 views
ASP.NET 4 routing question
I am trying to do the following in my Global.asax file:
At the moment i have to define my route like this:
routes.MapPageRoute(
"ViewPage",
"pages/{slug}",
"~/viewpage.aspx",
false
...
1
vote
0answers
122 views
GetVirtualPath returns the first route
Got a strange problem with my project routes.
Here are my routes:
// pennames
routes.MapRoute(
"pennames", // Route name
"MyHome/Authors/{action}/{id}", // ...
1
vote
1answer
133 views
RouteLink with dynamic parameters
I'm trying to store routes in database, and list those based on parameters.
Kinda like:
Route = "NewsDetail"
ParamKey 1 = "NewsID"
ParamVal 1 = "4"
.... 2..3
And I would like to know how I ...
1
vote
2answers
78 views
ASP.NET MVC 2 Point Return Links to Appropriate View
The default scaffolded views generated by ASP.NET MVC 2 contain links such as:
<%: Html.ActionLink("Back to List", "Index") %>
<%: Html.ActionLink("Create New", "Create") %>
These links ...