55 pts.
 Dynamically adding rows to Gridview
Hi friends , Can any one help on following requirement Dynamically Adding a new Row to Gridview Control in ASP.NET

Software/Hardware used:
ASKED: October 3, 2008  3:30 AM
UPDATED: October 3, 2008  3:15 PM

Answer Wiki:
You need to create the new row first, for example: <pre>DataRow newRow = dt.NewRow();</pre> Then, set the appropriate data, for example: <pre>newRow[NAME] = "New row";</pre> and add the new row to the data table, for example: <pre>dt.Rows.Add(newRow);</pre> Regards,
Last Wiki Answer Submitted:  October 3, 2008  3:15 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _