Wednesday, August 18, 2010

How to display data in datagrid after retrieve from database using VB.NET?

in C# but you can change it to VB.NET





DataGrid myGrid = new DataGrid;





myGrid.DataSource = myDataTbl;


myGrid.DataBind();How to display data in datagrid after retrieve from database using VB.NET?
set the datasource property to the database table you want it to populate.

No comments:

Post a Comment