Hi,
I have problem with export to excel in bizform. I export the data to excel 2003 and open with Excel 2007, but I cant see the data properly.
I checked the "~/CMSModule/BizForm/Tools/BizForm_Edit_Export.aspx.cs" file and I found the below code:
Response.ContentEncoding = System.Text.Encoding.UTF7;
If I change the encoding to UTF8, the export will work fine.
Response.ContentEncoding = System.Text.Encoding.UTF8;
I checked the all hotfix for version 5.0 and 5.5 and I found that all of them use the same encoding. I want to know is there any specific reason that use UTF7 encoding instead of UTF8.I want to know, If I change to UTF8 what will impacts?
Regards