Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_components thread: Multiselection listbox


Message #1 by "cindy zhou" <czhou@w...> on Wed, 29 Jan 2003 17:34:47
Hi,

I would like to put a listbox which allows multi selection on my web page. 
Is there any way to do it in ASP?  Or I have to do it in ASP.NET?

Thanks,
Cindy
Message #2 by "Pradeep Mishra" <tuna_pradeep@r...> on 30 Jan 2003 09:38:10 -0000
Hey Cindy,

I guess in html you can do it. Put "multiple"  in select tag. And 
see the result..
<select name="name" Multiple>
...
....
</select>

Reagrds
Pradeep
On Wed, 29 Jan 2003 cindy zhou wrote :
>Hi,
>
>I would like to put a listbox which allows multi selection on my 
>web page.
>Is there any way to do it in ASP?  Or I have to do it in 
>ASP.NET?
>
>Thanks,
>Cindy
>
>tuna_pradeep@r...
>%%email.unsub%%
>


Message #3 by "Dan Clem" <dan.clem@t...> on Thu, 30 Jan 2003 19:35:34
You can also add the size attribute to the select tag like so:

<select name="whatever" size="10">

  Return to Index