如何使用 C# 从 ASP.NET 中的 SQL 服务器数据库检索和显示 GridView 中的值

How to retrieve and display values in GridView from SQL Server database in ASP.NET using C#

我正在 Microsoft Visual Studio 2010 中创建一个 Web 应用程序。我想从 SQL 服务器数据库检索数据并使用 C# 在 ASP.NET 的 GridView 中显示它。

我想检索按钮 onclick 事件的数据。

protected void submit_click(object sender, EventArgs e) {

connection1.open();

SqlCommand sq= new SqlCommand("select student_id , student_name 来自学生);

SqlDataReader dr=新的 SqlDataReader();

...

// 网格视图

}

参考描述:Microsoft Visual Studio-how-to-retrieve-and-display-values-from-database-in -ASP.NET-using-C#.

protected void Button1_Click( object sender, EventArgs e) {

//connection string

SqlConnection con = new SqlConnection("Data Source=.\SQLEXPRESS; AttachDbFilename='C:\Users\HP\Documents\Visual Studio 2010\Projects \assignment\assignment\App_Data\pokedex.mdf';Integrated Security=True; User Instance=True");

con.Open();

SqlCommand cmd = new SqlCommand("Select * from pokedex;");

SqlDataAdapter sda = new SqlDataAdapter(cmd);

DataTable dt = new DataTable();

sda.Fill(dt);

GridView1.DataSource = dt;

GridView1.DataBind();

con.Close();

}