NumericUpDownExtender按钮的高度与文本框相同

时间:2010-10-20 15:19:00

标签: asp.net ajaxcontroltoolkit

我正在使用NumericUpDownExtender控件,但是文本框一侧的按钮比我的文本框大,有没有办法让按钮与文本框的高度相同?

编辑:我发现了我的问题。我使用的是标准按钮,无法处理?现在我已经创建了自定义的,但它们不会彼此出现,而是彼此相邻。

我的代码:

<asp:TextBox ID="txtHerst" runat="server" Text="0" Style="text-align: center"></asp:TextBox><cc1:NumericUpDownExtender ID="extHerst" runat="server" TargetControlID="txtHerst"
Width="50" Enabled="True" Maximum="1.7976931348623157E+308" Minimum="-1.7976931348623157E+308"
RefValues="" ServiceDownMethod="" ServiceDownPath="" ServiceUpMethod="" Tag=""
TargetButtonDownID="imgBtnDown" TargetButtonUpID="imgBtnUp"></cc1:NumericUpDownExtender><asp:ImageButton ID="imgBtnUp" runat="server" ImageUrl="Images/up.jpg" /><asp:ImageButton ID="imgBtnDown" runat="server" ImageUrl="Images/down.jpg" />`

3 个答案:

答案 0 :(得分:0)

你应该可以使用css来做到这一点......

答案 1 :(得分:0)

我遇到了同样的问题,最终将扩展程序替换为RangeValidator。

答案 2 :(得分:0)

首先你们所有人都应该创建一些Css。

undefined

所以,在我的情况下,我创建了一个表,并使用需要它的控制器和按钮设置列,适合我

    <style type="text/css">
        .auto-style1 {
            width: 78px;
        }
        .auto-style2 {
            height: 5px;
            width: 19%;
        } 
    </style>