SSRS 创建 URL 链接
我通过 ASP.NET Web 表单内的 SSRS 报告查看器控件托管 SSRS 报告。对于文本框上的操作属性,我设置以下表达式。
=Parameters!URL.Value & "?customerid=" & Fields!CustomerID.Value
期望的结果是这样的。
URL =“http://www. google.com/somesamplepage.aspx?customerid=26074C16-BFA2-4610-8D3F-9EF550FE77D1”
问题在于 Fields!CustomerID 值是 Guid 数据类型。在这种情况下,SSRS 不会为我显示超链接。但是,如果我使用字段集合中的另一个文本值更新查询字符串,它就可以正常工作。
有什么想法吗?
I am hosting a SSRS report through the SSRS Report Viewer Control inside a ASP.NET web form. For the action property on a text box I am setting the following expression.
=Parameters!URL.Value & "?customerid=" & Fields!CustomerID.Value
The desired result is something like this.
URL = “http://www.google.com/somesamplepage.aspx?customerid=26074C16-BFA2-4610-8D3F-9EF550FE77D1”
The problem is that the Fields!CustomerID value is a Guid datatype. SSRS does not display the hyperlink for me in this scenario. However, if I update the querystring with another text value from the fields collection it works fine.
Any ideas out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你尝试过吗
Have you tried