Is it possible to programmatically add a row to a GridView in C# ASP?
If yes, how ?
I want to add static data directly from the code, not from an array nor an da
dataGridView1.Columns[0].Name = "column1"; dataGridView1.Columns[1].Name = "column2"; string[] row1 = new string[] { "column1 value", "column2 value" }; dataGridView1.Rows.Add(row1);