Asp.net problem

  • Thread starter Thread starter Rajaram Pai
  • Start date Start date
R

Rajaram Pai

Hi,

I'm using the CheckBoxList control in ASP.NET for Web development. This
checkboxlist is bound by the database. If we have more items for this
checkbox list, it takes space on the page. I want to have vertical
scroll
bar (like CheckedListBox in Window development) to save space. Can we do
that in ASP.NET ?
Please give me your suggestions ? Thanks in advance.
 
You can put the CheckBoxList inside a div, set the height style, and set the
overflow style to either "auto" or "scroll".

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
If you push something hard enough,
it will fall over.
- Fudd's First Law of Opposition
 
Back
Top