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

ASP.NET項目開發指南:Blog數據庫連接編寫

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

    公用模塊編寫

    數據庫連接編寫

  為方便應用程序移植為版本控制提供更好的支持可以在應用程序配置文件(也就是WebConfig)中設置數據庫連接信息添加如程序所示的代碼

  程序  WebConfig

    <configuration>

        <configSections>

            <section name=RewriterConfig

    type=URLRewriterConfigRewriterConfigSerializerSectionHandler

        URLRewriter/>

        </configSections>

        <appSettings>

            <add key=conn value=Provider=SQLOLEDB;Persist Security

            Info=True;User ID=sa;Initial Catalog=ST_Blog;Data

            Source=(local)Password=;/>

        </appSettings>

        …

    </configuration>

  【代碼說明】這裡和以前不同添加了一個section其類型為URLRewriter在使用時需要引入其命名空間

  注意應當使User ID和Password與讀者計算機上的SQL Server登錄名和密碼相對應

  說明Initial Catalog表示要連接的數據庫

       返回目錄ASPNET項目開發指南

       編輯推薦

       ASPNET MVC 框架揭秘

       ASPNET開發寶典

       ASP NET開發培訓視頻教程


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