Tagged Questions
13
votes
10answers
1k views
What Url rewriter do you use for ASP.Net?
I've looked at several URL rewriters for ASP.Net and IIS and was wondering what everyone else uses, and why.
Here are the ones that I have used or looked at:
ThunderMain URLRewriter: used in a ...
3
votes
5answers
121 views
How is an image served from a URL with an ASPX extension?
Can Somebody tell how to create such kind of urls
for example if you see the url
http://office.microsoft.com/global/images/default.aspx?assetid=ZA103873861033
you will redirect to an image ..
my ...
3
votes
4answers
1k views
Ampersands in URLRewriter Query Strings
I have a query string parameter value that contains an ampersand. For example, a valid value for the parameter may be:
a & b
When I generate the URL that contains the parameter, I'm using ...
1
vote
1answer
175 views
How do I stop UrlRewriter stripping my + symbols
I'm using Intelligencia's UrlRewriter in my application and I'm having a problem where the rules I've setup appear to be stripping the + symbol from my url.
For example I want to have the urls ...
0
votes
0answers
32 views
asp.net multiple url rewriting rules
I've some problems with Intelligencia.UrlRewriter engine on my website. This is the scenario:
In the web.config I configured a simple role:
<rewrite url="~/(.+)/(.+).aspx" ...
0
votes
0answers
17 views
IIS UrlRewriter ASP.NET session honoring
I have 2 boxes, one is a Windows box that will serve a website. I have another (Linux) box that supplies data for use in some of the web pages on that site.
On the web pages themselves there is ...
0
votes
2answers
55 views
Url rewriting question
This is my rule set up in web.config:
<rule name="RedirectPopups" stopProcessing="true">
<match url="^webforms/visitor/popup/*" />
<conditions>
...
0
votes
2answers
150 views
URL Rewriting in asp.net c#
I'm working on a real estate website. It would be ideal to have my client's featured properties have their own unique URL like:
www.realestatewebsite.com/featured/123-fake-st/
I'm constructing a CMS ...
0
votes
1answer
56 views
URL rewriting makes all the links of same patterns after visiting any rewritten link in ASP.NET
I am using UrlRewriter to rewrite my urls in an ASP.NET application. Everything works fine and the work which I need to do is working ok.
I want to redirect ~/product/45/something to ...
0
votes
1answer
483 views
Page not redirecting properly, URL rewriting (Asp.NET)
I am working on URL rewrite and I found one tutorial on asp.net site,
The way I am doing it is
URL I am entering http://localhost:1573/WebNew/web/first-web
Now I have wriiten one class
public ...
0
votes
2answers
95 views
Intelligencia.UrlRewriter - using port other than 80
Does anyone know if it is possible to configure Intelligencia.UrlRewriter to work when accessing a site via a port other than 80?
eg http://mysite.com:70/default.aspx
Thanks
0
votes
2answers
143 views
ASP.NET UrlRewriter - How to Write RegEx for Root?
I have been trying to use UrlRewriter (Intelligencia.UrlRewriter.dll) in a test project.
My rewrite statement is as in the following:
<rewrite url="~/Sample/(.+)" to="~/Sample.aspx?Test=$1"/>
...
0
votes
4answers
951 views
Intelligencia.UrlRewriter
I'm using the Intelligencia UrlRewriter on a project.
It's working fine to rewrite urls typed into the browser.
For example, if I enter
http://localhost/People
This is being correctly rewritten ...