infobih
Posts: 58
|
| Posted: 09/18/2006, 2:00 AM |
|
i need to limit number of chars in the listbox titles (text column). using asp.
thanks
|
 |
 |
Ole
|
| Posted: 09/18/2006, 2:15 AM |
|
Hello
Depending on your database you can use something like:
select id, left(text,100) from table...
|
|
|
 |
Edd
Posts: 547
|
| Posted: 09/18/2006, 4:03 PM |
|
Use Javascript - good example:
http://www.netevolution.co.uk/scripts.asp?ID=52
Edd
_________________
Accepting and instigating change are life's challenges.
http://www.syntech.com.au |
 |
 |
WKempees
|
| Posted: 09/19/2006, 2:00 AM |
|
Use CSS: http://forums.codecharge.com/posts.php?post_id=68162&s_...=ragged+listbox
I would personally do it in SQL, but this is one of my methods too.
Walter.
|
|
|
 |
|