Can you post the code that you are using to get the values from the textbox?
As I understand it, you want to retrieve the textbox values (textboxes in the user control(s)) in the handler for the button click event (button is on the page). Normally, to do this, you need to create a public property on the user control that exposes the .Text property of textbox within the user control. You can't reference the textbox by name because the page has no knowledge of the textbox, only the user control. Post again if you still need help with this.
|