Crystal Reports: Passing Multiline Parameter Values(Crystal Reports:传递多行参数值)
问题描述
我想像这样将一些参数传递给 Crystal Report:
I want to pass some parameters to a Crystal Report like this:
ReportDocument.DataDefinition.FormulaFields[parameterName].Text = 'Text';
这很好用,除非我想从 ASPX 传递一个多行文本框(包含 和 字符.)
This workes fine unless I want to pass a multiline textbox from ASPX (containing and chars.)
reportviewer 报告缺少与此字符串匹配的 '.".
The reportviewer reports that "The matching ' for this string is missing.".
是否有任何示例/列表/建议如何解析(多行)文本和完成这项工作?
Is there any example/list/suggestion how to parse the (multiline) text and make this work?
谢谢,
斯特凡
推荐答案
如果你想保留换行符,你应该用 sindre j 描述的一些模糊的东西替换它们.为了使换行符在 Crystal Reports 中正确显示,您需要将 Crystal Report 公式中的晦涩字符替换为 html 换行符.然后将公式字段添加到报告中并右键单击,选择格式字段",选择段落"选项卡,并将文本解释"更改为HTML 文本".您还需要确保在通用"选项卡上选中可以增长"属性.请参见下面的示例公式:
If you want to retain line breaks you should replace them with something obscure as described by sindre j. In order for the line breaks to display correctly in Crystal Reports you need to replace the obscure characters in a Crystal Report formula with html breaks. Then add your formula field to the report and right-click, select 'Format Field', select the 'Paragraph' tab, and change the 'Text Interpretation' to 'HTML Text'. You also need to make sure the 'Can Grow' attribute is checked on the 'Common' tab. See the example formula below:
<代码>"<html>"+ 替换({?ParameterField}, "___", "<br>") + "<html/>"
希望这会有所帮助.
这篇关于Crystal Reports:传递多行参数值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Crystal Reports:传递多行参数值
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01