I need to put kind of textbox in the page. So can let user to input text in multi-line mode. But there is one problem is that if I set Multi-line mode for the textbox , there is a vertical scroll bar there. but I dont want scrollbar . So Does anyone have
any idea how to make a control just like textbox and can let user to input in multi-line mode and do not have vertical scrollbar.
yangwulong19...
Member
20 Points
114 Posts
Does anyone have any idea how to make a control just like textbox and can let user to input in m...
May 26, 2008 01:08 AM|LINK
I need to put kind of textbox in the page. So can let user to input text in multi-line mode. But there is one problem is that if I set Multi-line mode for the textbox , there is a vertical scroll bar there. but I dont want scrollbar . So Does anyone have any idea how to make a control just like textbox and can let user to input in multi-line mode and do not have vertical scrollbar.
OBaKe
Member
114 Points
17 Posts
Re: Does anyone have any idea how to make a control just like textbox and can let user to input i...
May 26, 2008 02:23 AM|LINK
Put the following code to your css file.
.NoScroll
{
overflow:hidden
}
Set your textbox's css class property to "NoScroll"
Thanks