unbound controls table using ADO.NET

561 Views Asked by At

how to fill table/grid through unbound control using ADO.NET C#.

    using (SqlConnection Connection = new SqlConnection())
    {
        Connection.ConnectionString = ConnectionString;
        Connection.Open();

        SqlDataAdapter Adapter = new SqlDataAdapter(Query + ItemIndex, Connection);
        DataSet DataSet = new DataSet();

        Adapter.Fill(DataSet);
        unbndgrdRecord.DataSource = DataSet;
        unbndgrdRecord.DataBind();
    }

this is the code i want to convert this in unbound control...

0

There are 0 best solutions below