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?
Asked
Active
Viewed 114 times
0
-
1Are all pages on the same domain? – Pekka Apr 14 '10 at 07:21
-
yes, they are all on same domain. – Khushi Apr 14 '10 at 08:04
1 Answers
0
You need to access the parent page and then access all its iframes.
Some answers to doing that are here:
How to access parent Iframe from javascript
Invoking JavaScript code in an iframe from the parent page
etc.