1. 程式人生 > >.net 設置默認首頁

.net 設置默認首頁

內容 brush config files run .aspx 設置 work runt

解決方案一:設置默認首頁

在 Web.config 文件中,加上紅色字體間的內容

<configuration>

    <system.web>

        <compilation debug="true" targetFramework="4.5" />

        <httpRuntime targetFramework="4.5" />  

    </system.web>

 

    <!--設置連接字符串-->

      <connectionStrings>

          <add name="Mall" connectionString="server=.;database=Wen.Mall;uid=sa;pwd=123456"/>

      </connectionStrings>

    <!--設置連接字符串-->

 

    <!--設置默認首頁-->

    <system.webServer>

        <defaultDocument>

           <files>

              <clear/>

              <add value="index.aspx"/>   <!--該頁為首頁-->

           </files>

        </defaultDocument>

    </system.webServer>

    <!--設置默認首頁-->

 

</configuration>

  

.net 設置默認首頁