how to restrict the appearance of dropdown list

  • Thread starter Thread starter sarellaravi
  • Start date Start date
S

sarellaravi

In my dropdown list there are 70 items. when I select the dropdownlist
I am able to view 35 items in a single view. But I want to restrict
the no.of items to 10 when I select dropdownlist.
Please help me out
 
In my dropdown list there are 70 items. when I select the dropdownlist
I am able to view 35 items in a single view. But I want to restrict
the no.of items to 10 when I select dropdownlist.
Please help me out

I don't believe you can. It's up to the browser on how to render the
size of it. Why would you want to limit it?
 
You could try using an HTML Select control instead of the Web DropDownList
control.
Then set the select's Size property to 10.
 
Back
Top