Click to See Complete Forum and Search --> : AutoPostback for the Textbox in the userControl


vuyiswam
May 21st, 2009, 09:31 AM
Good Day All

I have a textbox in a userControl and it has a Property "Autopostback" set to true, and as i know , this is encapsulated from the hosting page. now i need to set this property to true so that the Gridview in the Hosting page can recognize that the textbox of the usercontrol is set to true. I have added the following Properties from my User Control



public bool TextBoxAutoPostBack
{
get {
return txtbxActvs.AutoPostBack;
}
set
{
txtbxActvs.AutoPostBack = value;

}
}


Now i need to use them in my hosting page.

Thanks