-1

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

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84

1 Answers1

0

An example would be something like this:

((TextBox)SomePopupExtender.FindControl("SomeTextBox")).Text = "New Text";
Brian David Berman
  • 7,514
  • 26
  • 77
  • 144