中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

ASP.NET連接SQLServer簡單測試實例

小億
125
2024-01-08 17:52:13
欄目: 云計算

以下是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表中檢索數據,并將數據顯示在頁面上。

0
宁蒗| 屯门区| 龙陵县| 夏河县| 霍城县| 弥勒县| 万载县| 贵定县| 樟树市| 湘乡市| 天津市| 长汀县| 贵阳市| 刚察县| 景谷| 安新县| 德清县| 宝应县| 金溪县| 北流市| 沂源县| 确山县| 金坛市| 望奎县| 车险| 封开县| 上高县| 丰台区| 昭通市| 桦川县| 吉木萨尔县| 布拖县| 聊城市| 同仁县| 晋江市| 富蕴县| 东乌珠穆沁旗| 阿图什市| 江永县| 长顺县| 汽车|