Regards Kavi.n
SqlDataAdapter adpt; DataSet ds;
con.Open(); cmd = new SqlCommand("SQL Query", con); cmd.CommandType = CommandType.StoredProcedure; adpt = new SqlDataAdapter(cmd); ds = new DataSet(); adpt.Fill(ds); dgcategory.DataSource = ds; dgcategory.DataBind(); dgcategory.Visible = true; con.Close();
... ... DataSet ds DA.Fill(ds); Grid.DataSource = ds; Grid.DataBind();
Ajayajaypatelfromsanthal.blogspot.in
Login to post response