117.info
人生若只如初见

ASP.NET连接SQLServer简单测试实例

以下是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}
"); } } } } } } }

上述代码假设你已经创建了一个名为DemoDB的数据库,并且在该数据库中已经创建了一个名为Customers的表。

在ASP.NET应用程序中,创建一个名为"Default.aspx"的页面,并将上述代码放在该页面的代码文件中。

当访问该页面时,它将连接到SQL Server数据库,从Customers表中检索数据,并将数据显示在页面上。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fec81AzsLAAFfA1c.html

推荐文章

  • alarm()函数的使用总结

    alarm()函数是一个Unix系统调用,用于设置一个定时器,当定时器到期时会发送一个SIGALRM信号。
    alarm()函数的原型为:unsigned int alarm(unsigned int sec...

  • NASTool基础安装与配置

    要进行NASTool的基础安装与配置,可以按照以下步骤进行: 下载NASTool安装包:从官方网站或其他可信来源下载NASTool的安装包,选择与您的操作系统相匹配的版本。...

  • MS-SQLSERVER中的msdtc不可用解决方法

    如果在MS-SQLSERVER中出现msdtc不可用的问题,可以尝试以下解决方法: 检查MSDTC服务是否正常运行。在Windows服务中,找到“Distributed Transaction Coordinato...

  • java中分数用什么类型

    在Java中,可以使用整数类型或浮点数类型来表示分数。以下是几种常见的表示方法:1. 整数表示法:将分子和分母分别用两个整数变量表示,例如使用`int`类型表示分...