Click here to Skip to main content
15,897,891 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to hide horizontal and vertical scroll bar in asp.net please help me!!
Thank you!
Posted
Comments
Sergey Alexandrovich Kryukov 25-Mar-12 4:14am    
Which ones and why?
--SA

1 solution

Hi, u can use Css to hide scroll


CSS
.NoScroll
       {
           overflow : hidden;
       }

ASP.NET
<asp:textbox id="TextBox1" runat="server" height="48px" textmode="MultiLine" cssclass="NoScroll" xmlns:asp="#unknown"></asp:textbox>
 
Share this answer
 
Comments
Bnod19 25-Mar-12 13:12pm    
I wanted ask that how to adjust contents of page without scroll bars??

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900