熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

2.6.1 Web.config包含整個站點的設置[3]

2022-06-13   來源: .NET編程 

    下一部分包含一個客戶應用程序設置在修改示例應用程序位於不同環境下的運行方式時這個設置很有用<!>之間的內容是VWD為程序員提供的注釋不是實際設置的一部分

 

 <!

    Mode defines certain feature availability:

      Full: No restrictions

      Real: Runs as if a real site without the view code download and user/role view links

  >

  <appSettings>

    <add key=mode value=Full />

  </appSettings>


    下一部分即連接字符串部分包含了與數據源相關的信息這個字符串通常包含了身份驗證信息開發人員可以使用這個信息將代碼與保存在數據庫中的數據連接起來章將詳細討論連接字符串目前只需注意到在連接字符串部分可以有一個或多個添加字符串的標記

 

 

<!

                   define the connection string to the database

         >

  <connectionStrings>

     <add name=WroxUnited

              connectionString=Data Source=\SQLEXPRESS;AttachDbFilename=|DataDirectory|WroxUnitedmdf;Integrated Security=True;User Instance=True

              providerName=SystemDataSqlClient />

  </connectionStrings>


    注意connectionString屬性的字符串值有換行這是由於頁面寬度所限在實際情況下這些代碼應該位於同一行上

[]  []  []  []  []  []  


From:http://tw.wingwit.com/Article/program/net/201311/15493.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.