Hi,
I would like to have a Combobox where the selected item is the value set in the session attribute.
For example:
HTML:
<select name='myCombo'>
<option value='--Select Table--'>--Select Table--</option>
<option value='OPTION1'>OPTION1</option>
<option value='OPTION2'>OPTION2</option>
</select>
Javascript:
document.getElementbyName('myCombo').selectedValue = session.getAttribute("choice");
Thanks,
-Ashton.