1
vote
3answers
22 views
ASP.NET MVC Hierarchy Url Routing
Hello,
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
…
1
vote
2answers
47 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.
0
votes
1answer
36 views
ASP.NET URL Routing on root in IIS 6.0
Hi All,
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 …
0
votes
2answers
58 views
ASP.NET url routing, default path
Hi,
I expected this would also map the default homepage as in http://localhost/ but it is not hit.
RouteTable.Routes.Add(new Route("{Keyword}", new HomeHandler()));
Question is of course why not? …
2
votes
5answers
632 views
ASP.net routing on IIS 6
Hi
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 …
0
votes
1answer
15 views
Would it be possible to use URL routing for the following purpose?
I have a site that is being converted from classic asp to asp.net webforms. The old version of the website maintained to separate versions of the site, one for the US and one for Canada.
The US …
4
votes
2answers
119 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 …
0
votes
0answers
19 views
Route with check for File exists and levels
For example, I have two folders: common and specific. They have identical structure and could have the same pages.
files:
/common/default.aspx
/specific/default.aspx
url:
…
0
votes
2answers
76 views
Ignoring a route in ASP.NET MVC results in a 200 not a 404
We have URLs of the form
http://site/controller.mvc/action
If we accidentally write a relative URL for an image into the html (say src="imgs/img1.gif") this results in the browser making a request …
0
votes
1answer
528 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 …
1
vote
3answers
896 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:
…
2
votes
2answers
414 views
Web Form Routing - Cannot create an abstract class.
Hi I am using ASP.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 …
0
votes
3answers
451 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 …
0
votes
1answer
259 views
Asp.net 3.5 Sp1 Sub-Domain routing ?
I was wondering is there is a way to introduce sub-domains in Asp.net 3.5 routing
All i found as this http://blogs.securancy.com/post/ASPNET-MVC-Subdomain-Routing.aspx
But i was looking for …
1
vote
1answer
197 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 …
