A method on the Control class in the .NET framework that finds a control from its id. The control is only found if it is within the calling control's naming container.
Questions tagged [findcontrol]
374 questions
0
votes
2 answers
FindControl with dynamic controls
I want to find dynamic controls. Example:
- In my aspx:
Table Ids will be generated like: vertragstypPVN_Test1, vertragstypPVN_Test2, etc.
In my aspx.cs, I…