I have a usercontrol that has some checkboxes in it. On postback i want to read the state of the checkboxes. Where i am having trouble is i don’t know how to call on a control inside of a user control.
I have a lot of features in each usercontrol which is why i did it this way. I have the controls working properly i just don’t know how to identify them in my c# on postback so i can then print the results somewhere. I am using masterpages and a update panels as well. checkboxes are set to autopostback.
Use
FindControl()method to find out controls within user control.