Hello,
I have a user control that contains a textbox. The user control is itself contained in another user control (parent).
When the text is changed (OnTextChanged event) I need a way to tell the parent user control.
So I would have something alongs the lines of :
<uc1:MyUserControl OnChanged="DoSomething" runat="server" ID="MyUserControl1">
and the OnChanged eventhandler would fire when the textbox's OnTextBoxChanged event fires.
Any idea or clue?
Thanks!