passing data between iframe and the parent aspx page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,

i have an aspx page which contains i frame . this iframe contains a div
which is editable div . after finish editting i need to have the content of
this div in the codebehind of the parent aspx page .

any one has any idea
 
Client side, you use parent reference for the window.frames object.
This code samples demonstrates a wide variety of ways that you
can reference items in the iframe from the parent page and items
in the parent page from the iframe while dealing with waiting
for the iframe to finish loading.

http://www.eggheadcafe.com/articles/20020812.asp
 
Back
Top