Tagged Questions
3
votes
2answers
159 views
Is there No Way to Detect Routed URL in ASP.NET?
Is there no way to detect if the current request is being mapped via ASP.NET 4.0 URL routing?
I have an HTTP module that handles the application's BeginRequest event. I have found that this handler ...
3
votes
4answers
584 views
ASP.NET 4 Routing hide id parameter
I am learning .net and building a site that uses url routing.
I have it working although when attempting to get data from a database i am having to pass a ID parameter such as:
...
2
votes
2answers
193 views
special character in url routing in asp.net 4.0 web form?
How to handle special character in url while using url routing in asp.net 4.0?
special character like ( & , .)
It shows error as bad request or dangerous character in url.
How to handle?
...
2
votes
2answers
807 views
ASP.NET 4.0 URL routing with two or multiple querystring parameters
How can I pass two querysting parameters in URL routing using ASP.NET 4.0?
I have gone through many articles, but everywhere it shows only one parameter.
I'd like the display URL to be:
...
1
vote
2answers
137 views
Optional parameter in url routing asp.net 4.0 (not in MVC)?
Is it possible to have optional parameter in Url routing while using asp.net 4.0?
I mean i just pass value for one parameter and skip value for another parameter?
Thanks.
1
vote
2answers
310 views
MVC3 on IIS Express (classic mode) or IIS 6 returns 404 with file extensions (cgi, etc)
I am attempting to recreate a test done by HP's WebInspect to verify a possible attack vector. In this case it tacks CrazyWWWBoard.cgi to the end of any url. In my application, when I attempt this I ...
1
vote
0answers
242 views
ASP.Net 4 routing and subdomains
I'm developing a site with ASP.Net 4 which uses routing extensively. it displays pages for each client depending on the route data.
http://localhost/abc/manage/posts/ redirect to posts page of abc ...
1
vote
1answer
140 views
ASP.NET 4 migrate to routing / mapping
Previously I was using Rewriter.net to rewrite my urls. I used a format like:
<rewrite url="~/(.*)_p(\d+).aspx\??(.*)" to="~/product.aspx?pid=$2&$3"/>
So a page url would look like ...
1
vote
1answer
689 views
How to create RouteUrls with databound parameters declaratively?
I'm using the new Routing feature in ASP.NET 4 (Web forms, not MVC). Now I have an asp:ListView which is bound to a datasource. One of the properties is a ClientID which I want to use to link from the ...
1
vote
3answers
824 views
ASP.NET 4.0 Routing and Subfolders
I have a folder structure like this:
www.mysite.com/About/About.aspx
I have a link in a user control like this:
<a href="~/About/About" id="aboutLink" title="About" ...
1
vote
2answers
553 views
Should I still use querystrings for page number, etc, when using ASP.NET 4 URL Routing?
I switched from Intelligencia's UrlRewriter to the new web forms routing in ASP.NET 4.0. I have it working great for basic pages, however, in my e-commerce site, when browsing category pages, I ...
0
votes
0answers
45 views
URL routing issue asp.net 4.0
i have small site which i am testing in my local machine.
my file structure is like
index.aspx
DE/index.aspx
US/index.aspx
UK/index.aspx
my routing code
void Application_Start(object ...
0
votes
1answer
66 views
What's the proper configuration or routing so that Default.aspx, “”, and “~/” don't get routed?
I've got glimpse.
it's highlighting an empty line on the routes tab
Match Area Url Data constraints DataTokens
True Root -- --
Locally it seems cassini doesn't properly emulate a virtual ...
0
votes
1answer
161 views
URL Routing with ASP.NET 4 WebForms (doesn't work)
I'm trying out the ASP.NET 4 WebForms URL Routing with my application.
I have the following code in the Application_Start() method of my Global.asax file:
...
0
votes
1answer
304 views
.NET URI Routing MapPageRoute issue
Any ideas on how to resolve this issue?
My Global.aspx:
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.MapPageRoute<TabsResource>("users");
}
The ...
0
votes
2answers
298 views
ASP.NET 4.0 routing + ajax + browser history
The problem with ASP.NET 4.0 routing is that the Page.RouteData.Values does not contain the paramenters after # character from the link
...
0
votes
3answers
671 views
Exclude routing parameters in VaryByParam for Asp.Net 4
I have a routing setting in my global.asax file:
routes.MapPageRoute("video-browse", "video/{id}/{title}/", "~/routeVideo.aspx");
My routeVideo.aspx page has caching setting:
<%@ OutputCache ...
0
votes
2answers
385 views
Page.GetRoutUrl in a static method
Some background on what I'm doing
I usually like to have my pages return the url needed to access it. So i will normally have a method like so
public partial class ProductDetails : Page
{
public ...
0
votes
2answers
504 views
how to use url routing in asp.net 4.0
how i can use url routing in asp.net 4.0 . how it is possible in asp.net 4.0 ;
are you provide some demo code , sample project for it