I have a to select a number between one to thousand...
I dont want to use a dropdown list because there are too many values instead i want the box which has the values to act like a listbox with up and down arrows within the box...
I tried using the listbox with one row and it starts acting like a dropdownlist...
<asp:ListBox ID="ListBox1" runat="server" AppendDataBoundItems="True" Rows="1">
</asp:ListBox>
I am filling this listbox with from the codebehind..
any suggestions???