SqlDataAdapter da = new SqlDataAdapter("select * from newcustomer ", con); con.Open(); DataTable ds = new DataTable(); da.Fill(ds); GridView1.DataSource = ds; GridView1.DataBind(); con.close();
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)