Hi,
I am assigning a dataset, which has 30,000 records, to Telerik RAD Grid. Once I export that Grid to PDF,
My system is getting Hanged and giving message "Virtual Memory Low". machine becomes dead.
Following is the code:
could anyone help me on this?
Thanks, Malli
I am assigning a dataset, which has 30,000 records, to Telerik RAD Grid. Once I export that Grid to PDF,
My system is getting Hanged and giving message "Virtual Memory Low". machine becomes dead.
Following is the code:
| ExportPDF.DataSource = dsSKUListAllData; |
| ExportPDF.DataBind(); |
| ExportPDF.ExportSettings.IgnorePaging = true; |
| ExportPDF.ExportSettings.Pdf.PageWidth = Unit.Parse("270mm"); |
| ExportPDF.ExportSettings.OpenInNewWindow = true; |
| ExportPDF.MasterTableView.HierarchyDefaultExpanded = true; |
| ExportPDF.Rebind(); |
| ExportPDF.ExportSettings.ExportOnlyData = true; |
| ExportPDF.MasterTableView.ExportToPdf(); |
could anyone help me on this?
Thanks, Malli