ASP Classic on IIS7 (Windows7 Ulitmate) is not working

aspiis

My IIS working OK and it show .asp files but ASP code not working…
When I direct error to browser from IIS, I get following message on my page

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.

Looks due to some reason I don't running ASP code part.

In IIS, Authentication section, I added specific user which is Admin.

Under Turn Off Windows features on or off,
IIS –> Web Management Tools –> IIS Management Console is Enabled.

Under WordWideWeb Services –> Application Development Features –> ASP and ISAPI Extentions Enabled.

Best Answer

A couple of things which may help:

  1. Make sure that the default document is set correctly - index.asp is not part of the standard setup for IIS7 (in IIS Manager, click on your website and you should see a Default Document icon)
  2. Try switching on the feature to send ASP debugging info to the browser (in IIS Manager, double-click the ASP icon, click the "+" next to "Debugging Properties", and set "Send Errors To Browser" to True)

If you have IIS setup correctly. the ASP page should at least run the code and give you some error information back, which hopefully will lead you to resolving your issue.

Related Question