检索数据SQL数据库,并在Visual Studio 2013中的网站Gridview中显示

本文关键字:2013 网站 显示 Gridview Studio Visual SQL 数据 数据库 并在 检索 | 更新日期: 2023-09-27 17:59:47

我创建了一个类似谷歌的网站。它只是一个搜索栏,让客户了解我们是否有他们需要的产品。

  1. 客户在网站上搜索产品
  2. 查询发送到SQL
  3. 结果以网格形式显示在网站上(可以是多个项目)

我目前正在使用Visual Studio来构建此。但我不知道如何从数据库中获取数据来创建连接并返回一些结果。我是新手,如果有人问我,我很抱歉。

检索数据SQL数据库,并在Visual Studio 2013中的网站Gridview中显示

要采取的步骤是在单击按钮时实现SQL连接,或者无论您的要求是SQL指南

SqlConnection myConnection = new SqlConnection("user id=username;" + 
                                   "password=password;server=serverurl;" + 
                                   "Trusted_Connection=yes;" + 
                                   "database=database; " + 
                                   "connection timeout=30");

在所需位置向页面添加Gridview,并将数据源设置为数据读取器教程的结果

string strSQLconnection = "Data Source=dbServer;Initial Catalog=testDB;Integrated Security=True";
SqlConnection sqlConnection = new SqlConnection(strSQLconnection);
SqlCommand sqlCommand = new SqlCommand("select * from table1", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
GridView1.DataSource = reader;
GridView1.DataBind();

如果你想了解更多,请尝试更具体地回答你的问题