exchange of objects between different servers
Please help me solve problem. I have an object created on my page and I need to access that object from its opener page, lets say the object name is myObject. The problem is that the opener page lies different server, like the code in parent page is window.open("http://www.xyz.com/openerpage.htm",....). So, while trying to access parent object from opener page, doing opener.ObjectName, I get "Permission Denied" error. It seems we cannot exchange the objects between servers. Is there any method so that i can access my object from opener?
|