views:

179

answers:

1

Hi I have a control with lots of textboxes and repeater inside a ModalPopupExtender how do i get those controls values?

A: 

An example would be something like this:

((TextBox)SomePopupExtender.FindControl("SomeTextBox")).Text = "New Text";
Brian David Berman