Hi,
I install IIS7 with .ASP and ASP.NET feature in my pc (vista business).
I create a new web with a simple file (response.write "Hello World") called DEFAULT.ASPX. Everything works fine.
When I rename the same file as DEFAULT.ASP it doesn't work (error on the browser).
The web.config file is as follow:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<remove name="ASPClassic" />
<add name="ASPClassic" path="*.asp" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="C:\Windows\System32\inetsrv\asp.dll" resourceType="Unspecified" />
</handlers>
</system.webServer>
</configuration>
Thanks in advance for any help