The Global.asa file is an optional file that can contain declarations of objects, variables, and methods that can be accessed by every page in an ASP application.
I think you can do this at the IIS server, by redirecting at the host level. Open IIS Server >> Properties of the website >> Home Directory Tab >> Select "A redirection to a URL", and give the URL to which you want to redirect the users visit.
Or
Put a page default.asp in the root folder of this Site which should have the code
Response.Redirect("URL_TO_WHICH_IT_SHOULD_BE_REDIR ECTED")
This should work.
Cheers!
-Vijay G
|