html - Looking for the right MS FrontPage code in listbox -
i want update online amendments on existing content in table field (access database).
for update syntax found necessary (frontpage) codes here : https://support.microsoft.com/en-us/kb/240090 (i use fp 2003)
before changing content want online-user sees existing content of specific field cell , structure input. therefore coded listbox (combobox):
<tr> <td valign="top" width="110"><b>team1:</b></td> <td width="100"><select name="team1" size="1" valign="middle"> **<option selected value="<%=fp_fieldhtml(fp_rs,"team1")%>"></option>** <option value="john">john</option> <option value="joseph">josé</option> <option value="next">next</option> ... <option value="alan">alan</option></select></td></tr>
the codeline in bold should display existing content see blank box on screen
moreover if want change name new one, result in database : old name comma(,) new name (expected : new name)
summarized : looking correct code (cfr. bold) - display existing table cell - , update correct (= delete old name + input new one)
does knows solution ?
Comments
Post a Comment