views:

22

answers:

1

Hi,

I have a website in php which is using 4 frames(top, left, middle and right). The middle frame contains the web user control coded in asp.net. Now, in the right frame( which is coded in php ) some javascript contains the id of the items selected in right frame. I need to get those ids to the middle frame on asp.net user control. How can i do this?

A: 

You need to access the parent page and then access all its iframes.

Some answers to doing that are here:

http://stackoverflow.com/questions/935127/how-to-access-parent-iframe-from-javascript

http://stackoverflow.com/questions/251420/invoking-javascript-in-iframe-from-parent-page

etc.

zaf