Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to insert values from gridview into table using C#?
Posted
Updated 9-Dec-10 20:24pm
v2

Loops through gridview rows and insert row-wise. Did you try?
 
Share this answer
 
try the following code
// Add the new row and it returns row index
int i = dataGridView.Rows.Add();
dataGridView.Rows[i].SetValues(Enter your column values);
 
Share this answer
 
v2
Comments
TweakBird 10-Dec-10 3:21am    
added <pre> tag

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900