I have this app that is passing a dataset to an Excel writer. The database call in SourceData_Build() returns only about 10 rows of data but contains almost 200 columns.
The app has no problem with Converting to Excel and saving a file on the webserver. The issue is that the Panel is never updated and it appears to the user that the webpage is still loading...The state of the page does not change.
I was thinking that the Dispose() would release all resources but it doesn't appear to be doing anything.
has anyone had experience with this type of issue?
The app has no problem with Converting to Excel and saving a file on the webserver. The issue is that the Panel is never updated and it appears to the user that the webpage is still loading...The state of the page does not change.
I was thinking that the Dispose() would release all resources but it doesn't appear to be doing anything.
has anyone had experience with this type of issue?
Code:
DataTable myDataTable = SourceData_Build();
myDataset.Tables.Add(myDataTable);
dc.ConvertDataSetToExcel(myDataset, @FileLocation, REPORT_NAME.ToString());
myDataTable.Dispose();