C Claudia Fong May 21, 2008 #1 Hi, How can I create a grid of 20 Columns by 30 Rows using asp.net? Cheers! Claudi
E Eliyahu Goldin May 21, 2008 #2 GridView is a databound control. Once you have a 20x30 datasource, databinding it to a gridview will produce a 20x30 grid. Most common datasources are SqlDataSource, DataTable and SqlDataReader. -- Eliyahu Goldin, Software Developer Microsoft MVP [ASP.NET] http://msmvps.com/blogs/egoldin http://usableasp.net
GridView is a databound control. Once you have a 20x30 datasource, databinding it to a gridview will produce a 20x30 grid. Most common datasources are SqlDataSource, DataTable and SqlDataReader. -- Eliyahu Goldin, Software Developer Microsoft MVP [ASP.NET] http://msmvps.com/blogs/egoldin http://usableasp.net