Tagged Questions
The system.web.routing tag has no wiki summary.
13
votes
2answers
341 views
Failing ASP.NET MVC route. Is this a bug or corner case?
I have an ASP.NET MVC 3 application where users can post suggestions along the lines of "bla bla would be better if yada yada yada".
For the suggestion detail page I have defined a nice SEO friendly ...
5
votes
2answers
756 views
Asp.Net System.Web.Routing Find actual .aspx Page
I'm using System.Web.Routing to have some better URL's and have come across a problem. I need to know the actual page that's handling the request.
for example a request comes in as:
...
3
votes
1answer
390 views
How to create a RouteValueDictionary given a virtual path
I would like to know if there is a method that, given a virtual path, will return a collection of parameter names and values for a route that matches the path. I need this to get the parameters of the ...
2
votes
2answers
495 views
ASP.NET System.Web.Routing and Querystring Parameters
I am using ASP.Net 3.5 SP1 "System.Web.Routing" to enable URL routing in my WebForm Application. Now what i needed is to pass some parameters in QueryString eg:
...
2
votes
1answer
553 views
Parsing a URL Using ASP.NET MVC Routing
I have a URL in string format that I want to parse to get the relevent Route Values. I could parse the string manually, but I want to use my routing configuration so I am not tied to the particular ...
1
vote
2answers
198 views
Get the virtual url when using routing with webforms
How do I get the virtual url and not the webforms page name that the url is mapped to when using System.Web.Routing with webforms.
I want the url "/confirm/5" and not "Confirm.aspx".
1
vote
1answer
150 views
Web.Routing for the site root or homepage
I am doing some work with Web.Routing, using it to have friendly urls and nice Rest like interfaces to a site that is essentially rendered by a single IHttpHandler. There are no webforms, the handler ...
1
vote
2answers
315 views
Using Routing in Asp.Net Webform Application
I am using System.Web.Routing in the Asp.Net Webform Application. I write the following route in the global.asax :-
=====================================================
routes.RouteExistingFiles = ...
0
votes
1answer
73 views
How do I match a URL starting with a literal tilde character (~) in System.Web.Routing / ASP.NET MVC?
I'm converting some old-school code to ASP.NET MVC, and have hit a snag caused by our URL formats. We specify thumbnail width, height, etc. in a URL by prefixing the special URL path with a tilde, as ...
0
votes
0answers
23 views
Web Forms Routes - doesn't serve the original file
I have implemented my routes on my web forms app.
for instance, I can go to following page;
http://localhost:55636/documents
but also, I can go to following original one as well.
...
0
votes
1answer
87 views
How do I found the routing http modules loaded?
I am using the traditional Asp.Net website in which I am using the System.Web.Routing module. I want to find the way in which I know that the routing http modules is loaded or not?