Event handling

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

Guest

I have a page xxx.aspx that has an IFrame in it. The IFrame's source is yyy.aspx and has a button cmdClickMe

when the cmdClickMe click event occurs, I want to raise an event in yyy.aspx and handle it in xxx.aspx. So far, no luck. Any ideas?

Thanks...
 
when the cmdClickMe click event occurs, I want to raise an event in
yyy.aspx and handle it in xxx.aspx. So far, no luck. Any ideas?

It's 2 separate pages, you'll need to pass the information through cookies,
session variables, and a bit of javascript too.
 
Back
Top