How to open URL in SSRS report in webpart to new window

后端 未结 2 1007
傲寒
傲寒 2021-01-12 06:08

I have created a report that I will embed in Sharepoint 2007 via a webpart using a report viewer. This works well and looks rather nice, however in the report I have a text

相关标签:
2条回答
  • 2021-01-12 06:41

    Adding to Christine's answer, if Fields values are required, something like this can be done:

    ="javascript:void(window.open('https://myserver/mypath/mypage.aspx?myID=" & Fields!myID.Value & "','_blank'))"
    
    0 讨论(0)
  • 2021-01-12 06:52

    Have you tried using javascript and window.open to open a new window in the Go To URL action of the textbox? For example:

    ="javascript:void(window.open('http://myserver/mypath/myasppage.html', '_blank'))"
    

    Check out this article for more info.

    0 讨论(0)
提交回复
热议问题