Passing the values between frames

  • Thread starter Thread starter Gibs
  • Start date Start date
G

Gibs

Hi

I have a 2 frames and in one frame, i am using a user control[keeping the
user control in the aspx page]. I want to pass these user control values to
the bottom frame page when the user clicks the hyperlink. how can i do this.
Please help

Thanks in advance
 
You can pass some values via client side code to a control (or hidden
control) in your other frame.
Here's some javascript code that might do the trick for you:
parent.FRAMENAME.document.form1.myhiddentextbox.value='test';
 
Back
Top