下拉选择更改事件触发按钮Click事件

时间:2010-09-24 05:25:24

标签: asp.net

我已经在.Net中编写了代码。当我单击按钮然后触发下面的事件。请帮助如何做到这一点。

protected void ddldesignation_SelectedIndexChanged(object sender, EventArgs e)
{
      Code.
}

1 个答案:

答案 0 :(得分:0)

检查按钮是否在页面的表单集合中,您可以将其用作停止下拉列表事件触发的条件。

protected void ddldesignation_SelectedIndexChanged(object sender, EventArgs e)
{
    bool runEventCode = true;
    foreach (string ctl in Page.Request.Form)
    {
        Control c = Page.FindControl(ctl);
        if (c is Button)
        {
            runEventCode = false;
            break;
        }
    }

    if (runEventCode)
    {
        //Event handler code here
    }
}