I am using javascript for opening a new window when clicked on the link.
I want that the new window should dispaly the address bar but the value of that bar should not change.
Can i do that?
the script code i am usng is:
="Javascript:void(window.open('help.aspx?ID=" + Fields!ID.Value +"','mywindow','_self','width=500,height=500'))"
thanks in advance
I think that should be what happens using your code already.
Just remove the
__selfargument, it doesn’t belong there and overrides your width and height settings.