在Web.configue文件里,会多出来部分代码,应该是允许浏览目录:
1 <?xml version="1.0" encoding="utf-8"?> 2 3 <!-- 4 有关如何配置 ASP.NET 应用程序的详细信息,请访问 5 http://go.microsoft.com/fwlink/?LinkId=169433 6 --> 7 8 <configuration> 9 <system.web> 10 <compilation debug="true" targetFramework="4.5" /> 11 <httpRuntime targetFramework="4.5" /> 12 </system.web> 13 <system.webServer> 14 <directoryBrowse enabled="true" /> 15 </system.webServer> 16 17 </configuration>
时间: 2024-11-06 11:23:16