http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=228386&SiteID=1
Just remember to update your datasource paramaters.
DataView view =
(DataView)SqlDataSource1.Select(DataSourceSelectArguments.Empty);
DataTable table = view.ToTable();
DataSet ds = new DataSet();
ds.Tables.Add(table);
No comments:
Post a Comment