PDA

Click to See Complete Forum and Search --> : Combo Box in ASP


efrat
Mar 5th, 2001, 01:59 AM
Hi Folks
How can i do comboBox in ASP that the user can add
Item and update the Db
Thanks
Efrat

CreoN
Mar 5th, 2001, 02:02 PM
You create the combobox in HTML:

<SELECT name="combobox">
<OPTION>Text1
<OPTION>Text2
</SELECT>


Get the values in the combobox from a database.

Then create a simpel text-field where the user can write something, button when clicked add the text to the database, and then (in the "add-script") refresh the page.