我有一个第三方CustomControl,它需要一些数据绑定信息或其他在回发事件处理程序中发生的事情。 试图通过dropDownList发送此信息,我认为这个dropdownlist回发事件处理程序没有在CustomControlEventHandler之前触发,因为它发生在ASP.Net中。通常的解决方法是什么?
或者我不应该依赖服务器端转移并尝试在客户端等传输此信息?
答案 0 :(得分:0)
试
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true"></asp:DropDownList>
注意:AutoPostBack =“true”