开发者

ReportViewer is driving me absolutely nuts

开发者 https://www.devze.com 2023-01-16 02:43 出处:网络
After wrestling for half a day wi开发者_C百科th the Website Data Source tab, which is always showing me an empty panel, now I want to have a table cell which contains a hyperlink, but it\'s not workin

After wrestling for half a day wi开发者_C百科th the Website Data Source tab, which is always showing me an empty panel, now I want to have a table cell which contains a hyperlink, but it's not working either because I didn't use a hyper link.

Because this is on development environment, I can't give it an absolute URL in the rdlc, because otherwise it won't work when I deploy it!!. So I pass in the URL from C# to the destination as a report parameter, and give Jump to URL this expression:

Parameters!MyAbsoluteURL + Fields!ProductId

But this won't work because either, and I don't know why. Can I get some help please?


You're missing .Value:

Parameters!MyAbsoluteURL.Value + Fields!ProductId.Value
0

精彩评论

暂无评论...
验证码 换一张
取 消