global filter to redirect asp (old asp!) pages on asp.net site

  • Thread starter Thread starter Daves
  • Start date Start date
D

Daves

think the subject says it all,
my domain www.domain.com now is running asp.net but still gets requests to
asp pages which were there on the old server. Can I create some global http
filter to redirect all .asp requests to the default.aspx page?
 
Besides creating a filter, it could be simpler to just create placeholder
ASP pages that does the redirection to the appropriate location in the new
application or to handle this in a global 404 error handling page...
 
Back
Top