配置静态页面的web.config默认页面
运行VS的静态页面项目,出现403.14错误,后面才知道,没有设置起始默认页
<configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <appSettings> </appSettings> <system.webServer> <defaultDocument> <files> <add value="index.aspx" /> </files> </defaultDocument> </system.webServer> </configuration>
参考:http://blog.sina.com.cn/s/blog_86a5f91d0101d3kr.html
感谢博主