Drop-Down Box and Blank Values

D

Dave

I create a drop down box with X amount of options. I
ensured all of the options are labled as not being
checked; however, the top value is always shown on the web
and hence, always sent when the Submit button is pressed.

Is there a way to display a blank value on a drop down
box? Thanks!
 
D

Dave

-----Original Message-----
I create a drop down box with X amount of options. I
ensured all of the options are labled as not being
checked; however, the top value is always shown on the web
and hence, always sent when the Submit button is pressed.

Is there a way to display a blank value on a drop down
box? Thanks!


.
 
M

MD Websunlimited

Hi Dave,

Yes, but you'll have to enter the code in Code / HTML view

<select size="1" name="D1">
<option></option>
<option>safda</option>
<option>asfd</option>
<option>asdf</option>
</select>
 
Top