我已经在.Net中编写了代码。当我单击按钮然后触发下面的事件。请帮助如何做到这一点。
protected void ddldesignation_SelectedIndexChanged(object sender, EventArgs e)
{
Code.
}
答案 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
}
}