我的页面上有以下代码:
<asp:ModalPopupExtender ID="mpLabelCheck" PopupControlID="pnlModal" TargetControlID="lstCategory"
OkControlID="btnOK" runat="server" BackgroundCssClass="modalBackground">
</asp:ModalPopupExtender>
<asp:Panel id="pnlModal" CssClass="modalPopup" runat="server">
<p>Please make sure all data is entered before continuing.</p>
<p><asp:Button ID="btnOK" Text="OK" runat="server" /></p>
</asp:Panel>
目标控件 ID 是一个下拉列表。发生的情况是与下拉列表的任何交互都会触发弹出窗口。我想等到用户做出选择,然后根据另一种方法的结果有条件地显示弹出窗口。
关于我如何做到这一点的任何想法?