G
Guest
Hello,
I have a problem when I try to do this on a aspx page..
Is there anything wrong with this approach?
This is the javascript function
<Script Language='JavaScript'>
function OpenLink(Link){
parent.right.document.location=Link;
}</Script>
And I call it like this:
<A HREF=javascript:OpenLink('MyRequests.aspx')></A>
The strange thing about it is that if I use the localhost
address this code works, but if I put in the machine name
as the address to the web page, I get an 'access denied'
on the second line in the javascript function
(parent.right.document.location = Link
Appreciate any help!
thanks,
John
I have a problem when I try to do this on a aspx page..
Is there anything wrong with this approach?
This is the javascript function
<Script Language='JavaScript'>
function OpenLink(Link){
parent.right.document.location=Link;
}</Script>
And I call it like this:
<A HREF=javascript:OpenLink('MyRequests.aspx')></A>
The strange thing about it is that if I use the localhost
address this code works, but if I put in the machine name
as the address to the web page, I get an 'access denied'
on the second line in the javascript function
(parent.right.document.location = Link
Appreciate any help!
thanks,
John