usercontrol - events question

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

Guest

Hi all,

I have a UserControl that contains a Textbox control. When the value of the
textbox changes I would like to fire an event server side that would call a
method in the host aspx page and not in the ascx page. Is this possible? I
know the textbox has a valuechange event right? But how can I make it call a
method in the host aspx page?

TIA!
 
your user control should implement an event, that it raises when it gets
the textbox onchange event. it could also expose the textbox onchange
event as a global property.

-- bruce (sqlwork.com)
 
Back
Top