Hi Folks
How can i do comboBox in ASP that the user can add
Item and update the Db
Thanks
Efrat
Printable View
Hi Folks
How can i do comboBox in ASP that the user can add
Item and update the Db
Thanks
Efrat
You create the combobox in HTML:
Get the values in the combobox from a database.Code:<SELECT name="combobox">
<OPTION>Text1
<OPTION>Text2
</SELECT>
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.