Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BoundField col1 = new BoundField();
col1.HeaderText = "AuthorId";
col1.DataField = "au_id";
BoundField col2 = new BoundField();
col2.HeaderText = "First Name";
col2.DataField = "au_fname";
BoundField col3 = new BoundField();
col3.HeaderText = "City";
col3.DataField = "city";
Gridview1.Columns.Add(col1);
Gridview1.Columns.Add(col2);
Gridview1.Columns.Add(col3);
/code]
Sharing the best from my side...
--Prashant--