How do I make a value the default value for a combo box in ASP 3.0?
What I have below does NOT work, yet I've seen it in HTML file
examples before (and works if I put it in a HTML file by itself, but
not if I use it in a ASP 3.0 app.
<select name="cboCompan y" style="text-align:right; font-size:8pt">
<option value="08">08</option>
<option value="09" selected="true" >09</option>
<option value="33">33</option>
<option value="18">18</option>
<option value="17">17</option>
</select>
What I have below does NOT work, yet I've seen it in HTML file
examples before (and works if I put it in a HTML file by itself, but
not if I use it in a ASP 3.0 app.
<select name="cboCompan y" style="text-align:right; font-size:8pt">
<option value="08">08</option>
<option value="09" selected="true" >09</option>
<option value="33">33</option>
<option value="18">18</option>
<option value="17">17</option>
</select>
Comment