Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
how to change tab text dynamically
posted

I have a webtab whose content is bound to a usercontrol. my requirement is to change the tab text when user changes value on a textbox inside the usercontrol

i tried changing the text on the textbox's textchanged event, but the tab header text seems no effect.

protecte void textbox1_TextChanged(object sender, EventArgs e)

{

webtab1.Text = textbox1.Text;

}

can anyboy help me how to achieve this

Parents Reply Children