How to display Custom SQL query data into Gridview in Asp.net

here’s an example C# code that retrieves data from a SQL Server database using a query and displays it in an ASP.NET GridView control:

// First, create a SqlConnection object to connect to your database
using (SqlConnection connection = new SqlConnection("YourConnectionString"))
{
    // Create a SqlCommand object to execute your SQL query
    SqlCommand command = new SqlCommand("SELECT * FROM YourTable", connection);
    
    // Open the connection to the database
    connection.Open();
    
    // Create a SqlDataReader object to read the results of your query
    SqlDataReader reader = command.ExecuteReader();
    
    // Bind the SqlDataReader to the GridView control
    yourGridView.DataSource = reader;
    yourGridView.DataBind();
    
    // Close the SqlDataReader and the connection to the database
    reader.Close();
    connection.Close();
}

Replace “YourConnectionString” with the connection string to your SQL Server database, and “YourTable” with the name of the table you want to query. Also, replace “yourGridView” with the ID of your GridView control in your ASP.NET page.

Leave a Comment