本文介绍了如何为updatepanel触发器分配转发器中的控制ID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 大家好, i在转发器内有一个下拉列表。 我有更新面板, i想要将ddl id分配给更新面板触发器。 但我得到控件ID未找到错误。 可以任何一个PLZ帮助我,我如何将此控制ID分配给更新面板触发器。 i有这个代码,但我'我确定我必须在哪里调用它。 代码 //创建一个新的异步触发器 AsyncPostBackTrigger trigger = new AsyncPostBackTrigger() ; //设置将在UpdatePanel上触发回发的控件 trigger.ControlID =lnkbtncommit; //设置控件的事件名称 trigger.EventName =Click; //将触发器添加到UpdatePanels的触发器集合 pnlUpdate.Triggers.Add(触发器); plz帮助我。 谢谢解决方案 Hi guys,i have a dropdownlist inside the repeater.and i have update panel for it,i want to assign ddl id to the update panel triggers.But i'm getting control id not found error.Can any one plz help me, how can i assign this control id to the update panel triggers.i have this code, but i'm sure where i have to call this.CODE//Creates a new async trigger AsyncPostBackTrigger trigger = new AsyncPostBackTrigger(); //Sets the control that will trigger a post-back on the UpdatePanel trigger.ControlID = "lnkbtncommit"; //Sets the event name of the control trigger.EventName = "Click"; //Adds the trigger to the UpdatePanels' triggers collection pnlUpdate.Triggers.Add(trigger);plz help me.Thanks 解决方案 这篇关于如何为updatepanel触发器分配转发器中的控制ID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-15 10:55