Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 c# 的 Web 应用程序中有一组图像按钮,如果满足某个条件,我想将可见状态更改为 true。即,如果我从数据库中获取 ABC,我想让 imagebutton c_ibABC 可见。
谁能告诉我如何通过变量名更改对图像按钮的控制。
谢谢
您可以使用该FindControl方法,这允许从页面动态获取控件。
FindControl
protected ImageButton FindImageButton(string id) { string fullId = "c_ib" + id; return Page.FindControl(fullId) as ImageButton; }
只需将 Visible 属性设置为 true。
buttonName.Visible=true;