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

。_饼干妹妹 提交于 2019-12-05 09:12:06
Christine Penza

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.

werds

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'))"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!