Hi,
I am using Infragistics v8.2
Issue: When Exporting Ultrawebgrid to PDF i am getting one error like this
'/MyApplication/WebResource.axd?d=0OvaBzWedBe5DVsmUEiun0ptzBzkiEDIJEc0D-xnRNzM-r04xHi-vgwCBzf-EtOtOLXQrknP9-8P0RxRmaCi1A2&t=633398816440000000' is not a valid virtual path
and the code i had used is
exp.ExportMode = Infragistics.WebUI.UltraWebGrid.Exporter.ExportMode.Download;
exp.Export(ultrawebgrid1);
instead of this i had used DocumentExporter control then also i am getting same issue
Please help me .....
Thanks, regards
Sivaprasad
Since you're dynamically creating your WebGridDocumentExporter control, try adding it to your page after you create it but before you call its Export() method:
this.Form1.Controls.Add(exp);
Hi Vince,
I added control to the page before Calling Export() method.
Infragistics.WebUI.UltraWebGrid.DocumentExport.UltraWebGridDocumentExporter exp = new Infragistics.WebUI.UltraWebGrid.DocumentExport.UltraWebGridDocumentExporter();
exp.Format = Infragistics.Documents.Report.FileFormat.PDF;exp.DownloadName = "Reportname";
this.Page.Controls.Add(exp);
but still i am getting issue
I want to know Is there any other way to Export Ultrawebgrid to PDF?
Please Help me...