您好我正在尝试从Crystal Reports 11导出报告为CSV格式,但问题是每个字符串值都包含在引号中,我不想要。我试图将分隔符设置为空格但它不起作用。有人可以帮我这个..?
这是我的代码:
elseif ExportFormat = "CSV" then
ExportType = "5"
ExportFileName = TimeStamp&"_"&Session.SessionID&ReportDN&".CSV"
crystalExportOptions.DiskFileName = ExportDirectory & ExportFileName
crystalExportOptions.FormatType = CInt(ExportType)
crystalExportOptions.CharStringDelimiter =" "
'crystalExportOptions.FormatType = ExportFormat
crystalExportOptions.DestinationType = CInt(1)
Session("oRpt").Export False
Response.ContentType = "text/x-csv"
Response.Redirect "RDCrptserver10.asp?cmd=export&export_fmt=crxf_csv:0"
答案 0 :(得分:0)
经过一夜之间的黑客攻击后,我认为下面的变化可以解决问题:
ExportType =“7” crystalExportOptions.CharFieldDelimiter =“,”
7表示charSeparatedValues,我们将fieldDelimiter设置为“,”的唯一选项,所以现在字符串不包含在引号内....