5
Reply

What is purpose of DataBind method in ASP.NET?

Nishant Arora

Nishant Arora

Nov 26, 2012
5.5k
0

    Use the DataBind() method to bind data from a data source such as Dataset.

    santosh kumar
    May 31, 2016
    1

    DataBind method in ASP.NET to bind data to dataset.

    Sunil Babu
    April 02, 2016
    1

    The purpose of databind is to bind the data so as to display i.e string query1 = "Select * from Links";SqlConnection con1 = new SqlConnection(strcon);SqlCommand cmd1 = new SqlCommand(query1, con1);SqlDataReader sdr1;con1.Open();sdr1 = cmd1.ExecuteReader();gridLink.DataSource = sdr1;gridLink.DataBind();con1.Close();

    Neena M
    December 10, 2012
    0

    The purpose of databind is to bind the data so as to display i.e string query1 = "Select * from table_name"; SqlConnection con1 = new SqlConnection(strcon); SqlCommand cmd1 = new SqlCommand(query1, con1); SqlDataReader sdr1; con1.Open(); sdr1 = cmd1.ExecuteReader(); gridView1.DataSource = sdr1; gridView1.DataBind(); con1.Close();

    Neena M
    December 10, 2012
    0

    to bind data eg. gridview1.datasource=dataset;gridview1.dataBind();

    Manoj Kumar
    November 29, 2012
    0