如何在网页上启用ID我的代码附加Asp.net?

时间:2013-04-30 10:27:33

标签: c# asp.net .net

我正在尝试通过提供其ID来启用按钮,因为我完成了对页面上所有按钮的diabling我们如何处理具有ID的特定按钮我的代码是,

public static void EnableInsertBtn(Control parent)
{

    foreach (Control B in parent.Controls)
    {
        if (B.GetType() == typeof(Button))
        {
            ((Button)(B)).Enabled = false;

        }
        if (B.HasControls())
        {
            EnableInsertBtn(B);
        }

    }

希望你的建议

谢谢

1 个答案:

答案 0 :(得分:1)

尝试使用它的ID本身禁用该按钮。

btnID.Enabled = false;

并启用

btnID.Enabled = true;