Tagged Questions
0
votes
1answer
48 views
Redirect 301 works fine?
I added into my global.asax a 301 redirect from subdirectory to root .. www.informarea.it/blogengine to www.informarea.it
When I write in browser the name of the site: for example:
www.informarea.it ...
1
vote
1answer
235 views
Redirect Does not work in Global.asax publish time
I add custom error exception in Global.asax. It works on debug mode but when I publish it in IIS 7.0 it does not work:
Global.asax:
void Application_Error(object sender, EventArgs e)
{
// ...
2
votes
2answers
73 views
Rewrite on IIS7 not working correctly with “www”
I have problem with my redirection rule. I want my pages will have the "www" prefix. It works on some pages, while on other it simply not doing anything. This is my rule:
<rule name="WWW ...
0
votes
2answers
208 views
If htm or html page doesnt exist then check if aspx page exists
I have moved my website from using .htm/.html pages to aspx pages. Some existing websites/bookmarks etc will be referencing the old files instead of the aspx files so i want them to be sent to the ...
2
votes
1answer
191 views
On session start redirect - what will referrer be?
I'm using the global.asax's on_session_start() method to catch mobile user agents and redirect to a mobile version of a website. My question is:
On the mobile site if the user is redirected from the ...
1
vote
1answer
92 views
Application_OnError not always working
I experience strange problem. We have error handling in global.asax that would redirect user on special page in case if error happened:
void Application_Error(object sender, EventArgs e)
{
...
0
votes
1answer
1k views
redirect in Application_BeginRequest on MVC
I've a multi-language site. I'm trying to change to english (including the URL) when the site doesn't have the requested language. I want to do that by redirecting to the same page but changing the ...
2
votes
1answer
257 views
ASP.NET MVC 2 Redirect all actions from one controller to another
I have two controllers with the same actions and private methods. The second one is copied from the first.
I modified the second one, to perform better and now I want to route all the actions from the ...
0
votes
1answer
289 views
ASP.NET redirect not working with invalid URL with UIProcess application block - looking for redirect architecture ideas?
In my global.asax.vb file, I have code to re-write the URL if there is a prefix on the URL. We are introducing a new context in our application. So every page will either be of context hair or ...
3
votes
1answer
704 views
Managing a maintainance page redirect in an ASP.NET application
I would like to use a configuration in the .config file like this:
<appSettings>
<add key="SiteIsActive" value="false"/>
<add key="SiteNonActive_RedirectTo" ...
1
vote
1answer
142 views
How to add 301 redirect for a request with %20 at end of URL
Hi my site is written in .Net and I've discovered there are a few sites who incorrectly link to my site with a %20 symbol at the end of the URL. For example their hyperlink is ...
0
votes
2answers
650 views
How to auto-redirect URLs by patterns in ASP.NET / IIS 6?
I thought it should be a simple straight-forward matter but after struggling with it for too much time I'm gonna have to seek for help.
What I need is to redirect all requests for my web application ...
3
votes
2answers
2k views
ASP.NET customErrors with mode=remoteOnly and global.asax handling exceptions
I have custom errors set in the web config file as follows:
<customErrors mode="RemoteOnly" defaultRedirect="GenericError.aspx" />
Fine and dandy... I like that mode="RemoteOnly" facilitates ...
0
votes
3answers
250 views
How to write a global redirect in C#?
A client has sent out an email with a link containging a typo for a website we run [E.g. http://example.com/?id=123.]. What is the best way to re-direct anyone who visits the bad URL?
If someone ...
1
vote
3answers
3k views
Which redirection is better - web.config or global.asax
I need to redirect some of the older pages in my application to new pages. I thought urlMapping in web.config is the efficient way to achieve this. But there is also another way to redirect using ...
0
votes
2answers
2k views
Redirecting from Global.asax in Medium Trust
I am attempting to do a redirect in the Application_Error handler in Global.asax. Nothing fancy at all.
private void Application_Error(object sender, EventArgs e)
{
// ...snip...
...
0
votes
2answers
2k views
How to get without “default.aspx” url?
I implemented a following code in Global.asax file of my web application.
void Application_BeginRequest()
{
string rule = ConfigurationManager.AppSettings.Get("WwwRule");
HttpContext ...

