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

asp .net連接打開數據庫初步

編輯:C#入門知識

1 //測試連接字符串是否成功
2  #region
3 using System;
4
using System.Collections.Generic;
5
using System.Linq;
6
using System.Web;
7
using System.Web.UI;
8
using System.Web.UI.WebControls;
9
using System.Data.SqlClient;
10
using System.Configuration;
11

12 public partial class test_Default : System.Web.UI.Page
13
{
14
    protected void Page_Load(object sender, EventArgs e)
15
    {
16
        string str = ConfigurationManager.ConnectionStrings["haqiuConnectionString"].ConnectionString;
17
        SqlConnection strConn = new SqlConnection(str);
18
        if (strConn == null)
19
        {
20
            Response.Write("連接字符串為空!");
21
        }
22
        else
23         {
24
            Response.Write("連接字符串不為空!");
25
        }
26
    }
27
}
28
#endregion
29
30 //打開數據庫連接
31 #region
32 using System;
33
using System.Collections.Generic;
34
using Syste

  1. 上一頁:
  2. 下一頁: