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中如何配置默认首页】的全部内容了,欢迎留言评论进行交流!