asp.net首页设置

在web.config中设置首页

<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" />
    </system.web>
  <system.webServer>
         <defaultDocument>
             <files>
                 <clear />
               <add value="test.aspx" />
      </files>
    </defaultDocument>
  </system.webServer>
</configuration>

 

posted @ 2015-06-15 10:15  绿茶叶  阅读(703)  评论(0编辑  收藏  举报