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';
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top