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...