码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2018-09-12 11:06:18      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:row   led   encoding   odi   direct   cto   and   ati   art   

设置默认首页
<?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 相关配置

标签:row   led   encoding   odi   direct   cto   and   ati   art   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!