I am new to asp.net, Actually I am designing a web page which is similar to my Windows Form.
my windows form consists of a DataGridView which consists of 12 columns and 8 rows at any time. I am showing my windows form below
How can i do this in web page. In windows I am adding 8 rows programmatically to the DatagridView like
dgv.Rows.Add(8);
foreach (DataGridViewRow dgR in dgv.Rows)
{
dgR.HeaderCell.Value = Convert.ToChar(dgR.Index + 65).ToString();
}
but i don't know how to write in Web. Can anybody please help regarding this.
It's a little bit more overhead in asp.net webforms (guess that´s what you are using). Best way would be to create a DataTable. Here is a little example (untested though)
I hope that helps: