Help in .Net

liunx

Guest
Hello All,

I am new to .net. am developing a small test project and i need some help here.

I have a label in my asp page, Would like to know on how to make the label field as scrollable

Any help will be greatly appreciated

ThanksClient side with css.
<div style="height:400px; width:400px; overflow:auto;">This will have a scroll bar when the contents are bigger than 400 by 400</div>
 
Back
Top