I am trying to create a form with a select statement that displays a graphic with the choice. Is there anyway to do this. What I have now is:
<form method=post name=xyz action=xyz.asp>
<SELECT NAME="statusvalue">
<OPTION>Choose an option</option>
<option>choice 1</option>
<option>choice 2</option>
<option>choice 3</option>
</SELECT>
</form>
but what I want is more like:
<form method=post name=xyz action=xyz.asp>
<SELECT NAME="statusvalue">
<OPTION>Choose an option</option>
<option><img src="number1.gif">choice 1</option>
<option><img src="number2.gif">choice 2</option>
<option><img src="number3.gif">choice 3</option>
</SELECT>
</form>
Can this be done? I am programming for IE 5 or higher only and using Active Server Pages (.asp). I also have SQL*Server as a background and it would be "okay" if the image came from a database table but I can't figure out how to do that either.
<form method=post name=xyz action=xyz.asp>
<SELECT NAME="statusvalue">
<OPTION>Choose an option</option>
<option>choice 1</option>
<option>choice 2</option>
<option>choice 3</option>
</SELECT>
</form>
but what I want is more like:
<form method=post name=xyz action=xyz.asp>
<SELECT NAME="statusvalue">
<OPTION>Choose an option</option>
<option><img src="number1.gif">choice 1</option>
<option><img src="number2.gif">choice 2</option>
<option><img src="number3.gif">choice 3</option>
</SELECT>
</form>
Can this be done? I am programming for IE 5 or higher only and using Active Server Pages (.asp). I also have SQL*Server as a background and it would be "okay" if the image came from a database table but I can't figure out how to do that either.