Asp – How to communicate from iframe page with its hosting page

asp.net

In my web page I have an iframe that displays another page.
I want to pass some parameters from the iframe to the host page.

Can it be done?

Best Answer

With server side code (you did tag this asp.net)? No. The page including the iframe loads first, so it can pass data to the page in the iframe (via a query string), but not the other way around.

With client side code? See How do I communicate between frames in a web browser? but be aware of the limitations of the Same Origin Policy.