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

问题描述 投票:0回答:1

我创建了一个复制谷歌等网站的网站。它只是一个搜索栏,允许客户了解我们是否拥有他们需要的产品。

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

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

c# asp.net gridview
1个回答
0
投票

要点击的步骤是在单击按钮或Sql guide的任何要求时实现SQL连接

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

在所需位置添加Gridview到页面,并将数据源设置为datareader tutorial here的结果

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();

如果您想了解更多信息,请尝试更具体地解决您的问题

© www.soinside.com 2019 - 2024. All rights reserved.