0

I have one .aspx page containing three iframes.

First one has menu and second frame is going to open page which is selected from menu.

That off course ok is working fine.

The third page should get parameters from second page passes.

please let me know how to pass parameters between iframed pages.

Adel Khayata
  • 2,717
  • 10
  • 28
  • 46
Kito
  • 1
  • Google says: http://stackoverflow.com/questions/4689145/pass-jquery-variables-between-iframe-and-parent http://stackoverflow.com/questions/3381920/how-can-i-pass-attribute-value-from-iframe-to-parent-in-javascript – Maarten Sep 16 '13 at 09:09

1 Answers1

0

That is probably a wrong a approach. Try using masterpages for menus. If you really have to do it that way, then store parameters in session and either ask the user to refresh the page manually or use AJAX to pull from the server for changes (you can also push from the server side: asp.net http server push to client). However, using a master page would probably be the best way to do this.

Community
  • 1
  • 1
Igor Ševo
  • 5,459
  • 3
  • 35
  • 80