我的代码是:
<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>
这里,模态弹出窗口没有显示我的数字更新扩展器,我不知道这里有什么问题.FYI:我在IE8中运行我的代码。
答案 0 :(得分:1)
您必须在NumericUpDownExtender控件的Width属性中有一个值。
e.g。
<asp:TextBox ID="txtLeftNumeric" Width="50px" runat="server"></asp:TextBox>
<ajaxToolkit:NumericUpDownExtender ID="ajaxNumericLeft"
runat="server" Width="60"
TargetControlID="txtLeftNumeric">
</ajaxToolkit:NumericUpDownExtender>