controls within a webform table don't work!!

Tacec

Member
Joined
Jun 14, 2005
Messages
18
Location
Renton, WA
Programming Experience
1-3
I created a webform with various controls, textboxes, checkboxes, etc. The code behind that form worked great.

Once I reformatted all the controls within a table so it was better organized, the code no longer worked! None of the names changed on the controls, nothing was changed other than the fact that they were moved from the main form into a table.

Anyone have any ideas on why things don't work now? :confused:

Thanks!
 
You shouldn't have to retype the code.

You say you moved the controls from the main form; asp.net controls have to be contained within the form control to work. Note that the table can be contained in the form.
 
Back
Top