HttpContext.RewritePath -- .asp to .aspx

  • Thread starter Thread starter umbertoeklat
  • Start date Start date
U

umbertoeklat

How do I make use of HttpContext.RewritePath so that all ".asp"
extension pages will be rewritten to an ".aspx" page

I already tried mapping .asp to aspnet_isapi.dll but it doesn't work.
it says "This type of page is not served."

Thanks in advance.
 
asp pages are not served by the aspnet isapi module. you will need to
convert your asp project to an asp.net project
 
You will need to assosiate asp with ASP.NET engine first.
do it in IIS Managment Console.
Right click/Properties/Directory/Configuration

George.
 
Back
Top