childcontrol

expose and raise event of a child control in a usercontrol in c#

Hi i have a UserControl which contains the textbox within, i wanted to access the textchanged event of the textbox, but in the event properties of the usercontrol i don't see the events for the textbox. How can i expose and handle particular events of the child controls from the publically exposed UserControl in Winforms with C#. ...

Child Control in Asp.net

which is the earliest event when child control exists ? ...

avoid update panel trigger by child control

Hi, By default the postback of child controls will trigger update panels' update. How can I avoid the same? Thanks in advance ! ...

LinkButton child controls render

Hi. I want to have a LinkButton that adds 'span' tag around the text. protected override void Render(HtmlTextWriter writer) { Text = String.Concat("<span>", Text, "</span>"); base.Render(writer); } It's works perfectly, but only if I add text like this: <cc:TestLinkButton ID="TestLinkButton" runat="server"...