Can’t run classic ASP page on Windows 10 even after installing ASP support via “Turn Windows features on or off”

asp-classiciis

I get this error:

An error occurred on the server when processing the URL. Please contact the system administrator.

If you are the system administrator please click here to find out more about this error.

But I already installed classic ASP support on my IIS; why would I be getting this error? I tried restarting IIS and that didn't help; just in case the error message came from the application itself, I searched for it but didn't find it in the code anywhere.

Best Answer

to see the classic asp error iis you need to do some settings in iis:

1)open the iis manager and select the classic asp site or the server.

2)Select the Asp feature from the iis.

enter image description here

3) Expand the Debugging Properties node and set Send Errors To Browser to True.

enter image description here

4)Go back to the IIS properties and select Error Pages.

enter image description here

5)Select the Edit Feature Settings from the Action pane and select the Detailed error message radio button.

enter image description here

Restart the IIS server.

Related Topic