-1

我在 c# 的 Web 应用程序中有一组图像按钮,如果满足某个条件,我想将可见状态更改为 true。即,如果我从数据库中获取 ABC,我想让 imagebutton c_ibABC 可见。

谁能告诉我如何通过变量名更改对图像按钮的控制。

谢谢

4

2 回答 2

0

您可以使用该FindControl方法,这允许从页面动态获取控件。

protected ImageButton FindImageButton(string id)
{
    string fullId = "c_ib" + id;
    return Page.FindControl(fullId) as ImageButton;
}
于 2013-03-20T18:32:11.003 回答
0

只需将 Visible 属性设置为 true。

buttonName.Visible=true;
于 2013-03-20T18:25:06.847 回答