![]() |
Sergey Kornilov admin 4/29/2022 |
We do not this kind of option. The correct approach is to wrap text values with quotes, otherwise any field value with the comma in it will break the export. |
J
|
Joe S. 5/3/2022 |
Be warned this is kind of hacky had the same requirement and then some, here is what i needed:
You will have to modify a file called: exportpage.php NOTE: if you make these changes they will be overwritten everytime you publish In the file exportpage.php No column headerscomment out these two line by adding // UTF-8 coding not UTF-8 with BOMchange This comments out the flag to create a file with the UTF-8 coding not UTF-8 with BOM. Quotation marks need to be removed.change if( $eventRes ) { TO the str_repalce will remove any commas in a field value, which would break the format TimeStamp in the name of the export fileInstead of |
![]() |
Sergey Kornilov admin 5/4/2022 |
The question was about ASPRunner.NET so unlikely this can help. But a nice approach overall for a custom export. |