asp.net在web.config中如何配置默认首页,配置如下,mypage.aspx就是要设定的默认首页

<configuration>

<system.webServer>

        <defaultDocument>
            <files> 
                <remove value="mypage.aspx" />
                <add value="mypage.aspx" />
            </files>
        </defaultDocument>

</system.webServer>

</configuration>

以上就是【asp.net在web.config中如何配置默认首页】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)

与本文相关的软件

发表我的评论

最新评论

  1. 暂无评论