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
Does anyone know how to do this, other than giving each radio button it's own name?Code:... <td> <input type="radio" name="rblCorrespType" id="rblCorrespType" value="email"><label for="rblCorrespType">Email</label> <input type="radio" name="rblCorrespType" id="rblCorrespType" value="letter"><label for="rblCorrespType">Letter</label> <input type="radio" name="rblCorrespType" id="rblCorrespType" value="fax" checked="true"><label for="rblCorrespType">Fax</label> </td> ...
I've tried the following -
Cheers AlCode:for="rblCorrespType(2)" for="rblCorrespType[2]" for="fax" <-- value




Reply With Quote