Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6788919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:32:32+00:00 2026-05-26T17:32:32+00:00

I am trying to display the data from sql into a datagrid as follows:

  • 0

I am trying to display the data from sql into a datagrid as follows:

 try
    {
        SqlConnection xconn = new SqlConnection();
        xconn.ConnectionString = @"Data Source=servername; Trusted_Connection=yes; Database=master";
        xconn.Open();
        string s = "select * from tablename where name=@name";
        SqlCommand ycmd = new SqlCommand(s, xconn);

        ycmd.Parameters.Add("@name", dropdownlistname.SelectedValue);
        SqlDataAdapter da = new SqlDataAdapter(ycmd);

        DataTable dt = new DataTable();
        da.Fill(dt);
        gridview.DataSource = dt;
        gridview.DataBind();
    }
    catch (Exception e2)
    {
        lblresult.Text = e2.Message + "<br />" + e2.StackTrace  ; 
    }

I do not get any exception . However , the grid is not displayed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:32:32+00:00Added an answer on May 26, 2026 at 5:32 pm

    try like this….

    you can change this depends on your requirement ….

    SqlCommand command = new SqlCommand();
    command.CommandText = "SELECT * FROM Product WHERE Product.ID=@PROD_ID";
    command.Parameters.Add(new SqlParameter("@PROD_ID", 100));
    
    // Execute the SQL Server command...
    SqlDataReader reader = command.ExecuteReader();
    DataTable tblProducts = new DataTable();
    tblProducts.Load(reader);
    
    foreach (DataRow rowProduct in tblProducts.Rows)
    {
        // Use the data...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to display the raw data from a varbinary field in SQL
I'm trying to get ReportViewer to display data from a BindingSource (VB.Net Winforms). I
I display data from a (sql)view with information from several tables which I created
I am new to ASP.NET. I am trying to display my sql results using
I am trying to retrieve an image from SQL Server (yes, data type is
I'm getting error Not unique table/alias while trying to display data from MySQL database
I am trying to get data from two different table and put into on
I'm trying to display data from a non-Sugar table in a custom listview in
I'm trying to fill a asp.DataGrid with data from a DB2 database. The problem
I am trying to display some information on a grid queried from a sql

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.