0

I am developing an ASP.NET web application using .NET Framework 4 and Oracle 11g at back end in Visual Studio 2012. IIS 8 Express is configured to deploy the web app. When I try to run the app from Visual Studio 2012, I got an error HTTP Error code 403.14 (See below screenshot:) enter image description here

I googled for solution but it's not working. I have already enabled Directory Browsing in as Microsoft suggests to do so on error page but still I am getting the above error. Please help me out here.

4

1 回答 1

0

首先,启用目录浏览不是一个明智的解决方案,因为您可能会通过暴露内部信息来危及网站的安全性。其次,此错误的原因通常如错误页面的“最可能原因”的第一部分所述(强调我的):

未为请求的 URL 配置默认文档,并且未在服务器上启用目录浏览。

根据我的经验,这是使用Default.aspxorIndex.aspx作为主页的结果,奇怪的是,默认情况下它不在“默认文档”列表中。对我来说,这似乎是一个糟糕的设计选择,但修改配置并将您使用的任何默认页面名称添加到列表中应该相对简单。

于 2013-05-26T01:18:38.937 回答