zincoxide
01-04-2005, 02:14 PM
I have a table of Questions that have radio buttons Yes/No.
I purposly didn't have one checked because I wanted to know if it was missed or not. However, when they submit the form it is completely left out if they don't select either Yes or No.
I was wondering if I can (as a default) have only 2 radio buttons (Yes/No) without one of them checked off. If the user misses the question the it will save the value as MISSED! so that I know that question was missed. If the user selects either Yes or No then that value is sent to me.
Here is what I have:
<tr>
<td colspan="3">
Has any insurer ever declined to issue, reinstate or renew, or has any insurer
rated, modified, postponed or cancelled, any life or health insurance on the Proposed Life
Insured:
</td>
<td width="30%" align="right" valign="bottom">
<input type="radio" name="RatedorDeclined" value="Yes">Yes
<input type="radio" name="RatedorDeclined" value="No">No
</td>
</tr>
can someone help here?
I purposly didn't have one checked because I wanted to know if it was missed or not. However, when they submit the form it is completely left out if they don't select either Yes or No.
I was wondering if I can (as a default) have only 2 radio buttons (Yes/No) without one of them checked off. If the user misses the question the it will save the value as MISSED! so that I know that question was missed. If the user selects either Yes or No then that value is sent to me.
Here is what I have:
<tr>
<td colspan="3">
Has any insurer ever declined to issue, reinstate or renew, or has any insurer
rated, modified, postponed or cancelled, any life or health insurance on the Proposed Life
Insured:
</td>
<td width="30%" align="right" valign="bottom">
<input type="radio" name="RatedorDeclined" value="Yes">Yes
<input type="radio" name="RatedorDeclined" value="No">No
</td>
</tr>
can someone help here?