0

我的页面上有以下代码:

    <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 是一个下拉列表。发生的情况是与下拉列表的任何交互都会触发弹出窗口。我想等到用户做出选择,然后根据另一种方法的结果有条件地显示弹出窗口。

关于我如何做到这一点的任何想法?

4

1 回答 1

1

使用虚拟隐藏控件作为扩展器的目标,并通过Show方法调用在服务器代码中显示它

于 2013-05-30T15:44:27.640 回答