server.transfer

ASP.NET URL remapping &redirection - Best Practice needed

This is the scenario: I have a list of about 5000 URLs which have already been published to various customers. Now, all of these URLs' location has changed on my server side. The server is still the same though. This is a ASP.NET website with .NET3.5/C#. My requirement is : Though the customers use the older source URL they should be...

SEO Question, and about Server.Transfer (Asp.net)

So, we're trying to up our application in the rankings in the search engines, and one way our SEO guy told us to do that was to register similar domains...for example we have something like http://www.myapplication.com/parks.html so..we acquired the domain parks.com (again just an example). Now when people go to http://www.parks.com ...

Server.Transfer in Try-catch :Thread abort exception

What is the equivalent of Response.Redirect("abc.aspx",false) when i use Server.Transfer instead of Response.Redirect.I use false as the second param of Response.Redirect to stop receiving the ThreadAbort exception in a try catch block I want to get rid of the Thread.Abort exception when i use Server.Transferis in a try catch block....