asp.net设置默认打开页面,Web.config,defaultDocument
The web.config file can be used to set a default document, or list of default documents for your website. Web.config can be used to change the default document (page) for an entire site, or on a directory by directory basis. The default page may be a .php, .asp, .htm, .aspx, .cfm, or any other file type handled by the web server.
1 <configuration> 2 3 <system.webServer> 4 5 <defaultDocument> 6 <files> 7 <clear /> 8 <add value="index.asp" /> 9 </files> 10 </defaultDocument> 11 12 </system.webServer> 13 14 </configuration>
微软IIS知识链接:http://www.iis.net/configreference/system.webserver/defaultdocument;
CSDN博文:http://blog.csdn.net/happymagic/article/details/8824609;
Lionden 2014年5月14日
E-mail:[email protected]
转载请注明原文地址和博客园Lionden:http://www.cnblogs.com/lionden/
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。