我有一个像这样的 ajax NumericUpDown 扩展器:
<div style="float: left;">
<asp:TextBox ID="txtFixedCost" runat="server" CssClass="app_textbox" Width="100px"
Height="15px" Text="40" MaxLength="2" />
<asp:NumericUpDownExtender ID="NumericUpDownExtender1" runat="server" TargetControlID="txtFixedCost"
Maximum="100" Minimum="0" Width="50" />
</div>
问题是文本框/扩展器控件在滚动时不会保持锚定在页面上。它们随着滚动而移动。我怎样才能让这些控件保持不变?非常感谢帮助,谢谢。