首页 > Windows开发 > 详细

[转][C#]Web.config 相关配置

时间:2018-09-12 10:50:18      阅读:238      评论:0      收藏:0      [点我收藏+]
设置默认首页
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.asp" />
                <add value="Default.htm" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

来自:https://www.landui.com/help/show-8311.html

 允许目录浏览

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.webServer>
        <directoryBrowse enabled="true" />
    </system.webServer>
</configuration>

其它设置参考:http://www.cnblogs.com/enfp/articles/7718264.html

[转][C#]Web.config 相关配置

原文:https://www.cnblogs.com/z5337/p/9633219.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!