在报告中显示新行
你好 我正在使用报告生成器构建新报告 我需要从数据库检索数据并将其显示在表中。一切都很好,但我有一个问题。 我有一个字段包含来自数据库的新行( char (13) )( char(13) 包含在从数据库检索的数据中) 但报告生成器没有在输出报告中显示新行
我正在使用 mssql 2008 R2 数据在 mssql 和 Visual Studio 中以多行显示
您知道吗?
hello
i'm building new report using report builder
i need to retrieve my data from database and displa it in a table. all thing is allright but i have one problem.
i have one feild contain new line ( char (13) ) from data base (the char(13) is contained in the data retrieved from database)
but the report builder didn't display the new line in the output report
i'm using mssql 2008 R2 the data are displayed in multiple line in mssql and visual studio
any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,据我了解,MS Report Builder 不理解特殊符号。
对于新行,您应该使用“vbCrLf”常量( http://msdn.microsoft.com/en-us/library/dd255261(v=sql.100).aspx)
Well, as I understood, MS Report Builder does not understand special symbols.
Instead for new line you should use "vbCrLf" constant (http://msdn.microsoft.com/en-us/library/dd255261(v=sql.100).aspx)
在显示之前,您应该将
char(13)
替换为
。You should replace the
char(13)
with<br/>
somewhere before you display it.