How to add and disable Classic ASP support in a website

How to remove classic ASP handler

Want to remove Classic ASP support from your website, follows the steps

1. Open IIS

2. Double Click on Handler Mappings

3. Seach ASP Classic Handler and Click Remove under Actions Right side Window

You can update the web.config as follow

 <system.webServer>

 <handlers>

            <remove name=”ASPClassic” />

   </handlers>

</system.webServer>

How to Add Classic ASP Handler

1. Open IIS

2. Double Click on Handler Mappings

3. Click “Add Managed Handler” under action

 Request Path *.asp

Type %windir%\system32\inetsrv\asp.dll

Name ASP Classic

Click Revert TO Parent – With ASPClassic Handler Selected

Leave a Reply

Your email address will not be published. Required fields are marked *