Hello,
I am doing an export to CSV for a grid.
When testing in IE7, when opening the file (in excel) without saving first, the file name is converted to its URL Encoded equivalent.
e.g. %53%74%6f%72%65%45%78%70%6f%72%.csv
We have determined that this behavior is specific to IE7 and only occurs if opening the file, not saving the file first.
Export settings:
Is there a work around?
Thanks,
Jon
I am doing an export to CSV for a grid.
When testing in IE7, when opening the file (in excel) without saving first, the file name is converted to its URL Encoded equivalent.
e.g. %53%74%6f%72%65%45%78%70%6f%72%.csv
We have determined that this behavior is specific to IE7 and only occurs if opening the file, not saving the file first.
Export settings:
| //set the export settings |
| rgStoreManagement.ExportSettings.FileName = "StoreExport"; |
| rgStoreManagement.ExportSettings.OpenInNewWindow = true; |
| rgStoreManagement.ExportSettings.IgnorePaging = true; |
| rgStoreManagement.ExportSettings.ExportOnlyData = true; |
| //export to csv |
| rgStoreManagement.MasterTableView.ExportToCSV(); |
Is there a work around?
Thanks,
Jon