Calling function in a child window from main parent window

  • Thread starter Thread starter Bhishm
  • Start date Start date
B

Bhishm

Hi,

I am opening a child window from parent using window.open, but on
refreshing the parent the reference of the child is lost.

Is there any way to save the reference of the child in the parent
after refresh.

I have searched a lot but not able to find any relevant information

Thanks & Regards,
Bhishm
 
Hello Bhishm,

How do u store the reference now? it session?

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


B> Hi,
B>
B> I am opening a child window from parent using window.open, but on
B> refreshing the parent the reference of the child is lost.
B>
B> Is there any way to save the reference of the child in the parent
B> after refresh.
B>
B> I have searched a lot but not able to find any relevant information
B>
B> Thanks & Regards,
B> Bhishm
 
security prevents passing the window handle. you could use framesets, so
the parent frame could hold the handle, or switch to ajax, so that a
postback is not done.

-- bruce (sqlwork.com)
 
Back
Top