以下是ASP.NET連接SQL Server的簡單測試實例:
using System;
using System.Data.SqlClient;
namespace DemoApp
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string connectionString = "Data Source=(local);Initial Catalog=DemoDB;Integrated Security=True";
string query = "SELECT * FROM Customers";
using (SqlConnection connection = new SqlConnection(connectionString))
{
using (SqlCommand command = new SqlCommand(query, connection))
{
connection.Open();
using (SqlDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
string customerName = reader["CustomerName"].ToString();
string contactName = reader["ContactName"].ToString();
string city = reader["City"].ToString();
// 做你想做的事情,比如把數據顯示在頁面上
Response.Write($"CustomerName: {customerName}, ContactName: {contactName}, City: {city}<br/>");
}
}
}
}
}
}
}
上述代碼假設你已經創建了一個名為DemoDB
的數據庫,并且在該數據庫中已經創建了一個名為Customers
的表。
在ASP.NET應用程序中,創建一個名為"Default.aspx"的頁面,并將上述代碼放在該頁面的代碼文件中。
當訪問該頁面時,它將連接到SQL Server數據庫,從Customers
表中檢索數據,并將數據顯示在頁面上。