程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> web.config 數據庫連接,web.config

web.config 數據庫連接,web.config

編輯:關於.NET

web.config 數據庫連接,web.config


方法一:connectionsStrings

首先配置web.config文件

  <configurations>

    <connectionStrings>

      <add name="Test" connectionString = "server=.;database=Testbase;uid=sa;pwd=asdf123_;">

    </conectionStrings>

  <configurations>

    其中server表示數據庫地址,本地數據庫可以用"."或者“localhost”表示,database表示數據庫名,uid表示登陸數據庫的名稱,pwd登陸數據庫密碼;

aspx頁面便更簡單

  先引用命名空間using System.Web.Configuration;

    string con = ConfigurationManager.ConectionStrings["Test"].ConnectionString; 

  if (!string.IsNullOrEmpty(con))
  {
    TextBox1.Text = "連接數據庫成功!";
  }
  else
  {
    TextBox1.Text = "連接數據庫失敗!";
  }

方法二:appSettings

  web.config配置

  <configurations>

   <appSettings>

      <add key="Test" value="server=.;database=Testbase;uid=sa;pwd=asdf123_;/>

   </appSettings>

  </configurations>

其中server表示數據庫地址,本地數據庫可以用"."或者“localhost”表示,database表示數據庫名,uid表示登陸數據庫的名稱,pwd登陸數據庫密碼;

aspx頁面

    首先應用命名空間先引用命名空間using System.Web.Configuration;

      string con = configurationManager.AppSetting["Test"];

    if(!string.IsNullOrEmpty(con))

    {
     TextBox1.Text = "連接數據庫成功!";
   }
   else
   {
     TextBox1.Text = "連接數據庫失敗!";
   }   

 

1、集成的Windows身份驗證語法范例

string con = "server=.;database=myschool;integrated security=SSPI";

2、Sql Server 2005中的Windows身份驗證模式如下:

string con = "server=.;database=school;uid=sa;pwd=asdf123_";

3、Sql Server 2005中的Sql Server身份驗證模式如下:

string con = "data source=.;initial catalog=school;user id=sa;pwd=asdf123_";

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved