November 5, 2010

Bind Dataset to Gridview In ASP.Net

Dataset oDs = new Dataset();
Gridview1.DataSource = oDs;
Gridview1.DataBind();



Explanation:
Get the data from Backend in dataset.
And then bind dataset to gridview.
This will definately work.

1 comment: