我创建了一个复制谷歌等网站的网站。它只是一个搜索栏,允许客户了解我们是否拥有他们需要的产品。
我目前正在使用Visual Studios来构建它。但我不知道如何从我的数据库中获取数据来创建连接并带回一些结果。我是新手,如果有人问我,我道歉。
要点击的步骤是在单击按钮或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();
如果您想了解更多信息,请尝试更具体地解决您的问题