我的代码是:
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:Panel ID="Panel1" CssClass="modalPopup" runat="server">
<div id="modal" runat="server">
<asp:TextBox ID="TextBox1" runat="server" Visible="true"></asp:TextBox>
<cc1:NumericUpDownExtender ID="NumericUpDownExtender1" TargetControlID="TextBox1" Minimum="1"
runat="server">
</cc1:NumericUpDownExtender>
</div>
</asp:Panel>
<cc1:ModalPopupExtender ID="ModalPopupExtender1" PopupDragHandleControlID="modal"
BackgroundCssClass="modalBackground" TargetControlID="Button1" PopupControlID="Panel1"
runat="server">
</cc1:ModalPopupExtender>
</form>
</body>
在这里,模态弹出窗口没有显示我的数字 updown 扩展器,我不知道这里有什么问题。仅供参考:我在 IE8 中运行我的代码。