打開 http://localhost:1609 報錯:
HTTP 錯誤 403.14 - Forbidden
Web 服務器被配置為不列出此目錄的內容
解決方案一:設置默認首頁
在 Web.config 文件中,加上紅色字體間的內容
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httPRuntime targetFramework="4.5" />
</system.web>
<!--設置連接字符串-->
<connectionStrings>
<add name="Mall" connectionString="server=.;database=Wen.Mall;uid=sa;pwd=123456"/>
</connectionStrings>
<!--設置連接字符串-->
<!--設置默認首頁-->
<system.webServer>
<defaultDocument>
<files>
<clear/>
<add value="index.aspx"/> <!--該頁為首頁-->
</files>
</defaultDocument>
</system.webServer>
<!--設置默認首頁-->
</configuration>
新聞熱點
疑難解答