Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am here because I have a problem installing a web application, here is the situation: 1. We are installing a web application which is supposed to be accessible from both internet and intranet. 2. Now we can only browse it using the ip address of the server in our internal website (intranet). 3. It cannot be browsed if using the URL with /.aspx file, but available with URL/.html. For example, it is not available using http://test.mycompany.com/Default.aspx. However, it is available using http://test.mycompany.com/test.html. In other words, all the .asp file are not accessible, but html is ok.

I don't have much knowledge in this field, just follow the installation guide provided by the supplier. Can someone help me to solve this. Thanks a lot!

share|improve this question
Please put a screen shot here – eminach 17 hours ago

1 Answer

It sounds like you need to enable ASP.NET in IIS.

On your web server, open up IIS Manager, in the left-hand pane select your web server, in the content pane, in the group labeled "IIS", find the the tile labled "ISAPI and CGI Restrictions". Double-click on that to open it.

You should see a list of ISAPI and CGI extensions. Ensure that ASP.NET is set to "Allowed".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.