gridvie
-
how could we insert data into Gridview and then into database.
abubakar
-
how could we insert data into Gridview and then into database.
abubakar
There are lots of articles on web sharing on how grid can be used. To start with, one such article: GridView all in one[^] Try and post specific issue.
Sandeep Mewara Microsoft ASP.NET MVP [My latest Article]: Server side Delimiters in ASP.NET[^]
-
how could we insert data into Gridview and then into database.
abubakar
here it i body disconnected way SqlConnection sqlcon = new SqlConnection("server=.;database=tabakus;Trusted_connection=true"); SqlDataAdapter da = new SqlDataAdapter("select * from musteri",sqlcon); DataTable dt = new DataTable(); da.Fill(dt); GridView1.DataSource = dt; GridView1.DataBind();
-
how could we insert data into Gridview and then into database.
abubakar