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: Code: <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.
<SELECT name="combobox"> <OPTION>Text1 <OPTION>Text2 </SELECT>
Forum Rules