Hi,

I've got a radio button control array and want to add labels to the options so that you can click the text to select the option
Code:
...
<td>
<input type="radio" name="rblCorrespType" id="rblCorrespType" value="email"><label for="rblCorrespType">Email</label>&nbsp;
<input type="radio" name="rblCorrespType" id="rblCorrespType" value="letter"><label for="rblCorrespType">Letter</label>&nbsp;
<input type="radio" name="rblCorrespType" id="rblCorrespType" value="fax" checked="true"><label for="rblCorrespType">Fax</label>
</td>
...
Does anyone know how to do this, other than giving each radio button it's own name?

I've tried the following -
Code:
for="rblCorrespType(2)"
for="rblCorrespType[2]"
for="fax" <-- value
Cheers Al