How to get a reference to a control from its' string name in C#?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
Page.FindControl
If the Control is nested, use
Control.FindControl
from the parent Control. Otherwise, you'll have to write your own FindControlRecursive