This WAS bugging me but I want to share how to add a new row to a DataTable in .net 2.0
There is a little known method of your DataTable that is called New<YourDataTableName>Row.
That is it then add it to the DataTable like so DataTable.Rows.Add(YourRow)
