I need to implement onmouseover and onmouseout attributes for the <input>, <td>, or <label> elements within each ListItem of a RadioButtonList. Can someone help me achieve this? Here's what I have attempted so far, but it's not working...
Here is the ASPX File...
<asp:RadioButtonList ID="RadioButtonListPaymentFrequency"
runat="server"
RepeatDirection="Vertical"
RepeatLayout="Table"
RepeatColumns="1" />
And here is the VB Code Behind...
<table id="RadioButtonListPaymentFrequency" border="0">
<tbody>
<tr>
<td>
<input id="RadioButtonListPaymentFrequency_0" name="RadioButtonListPaymentFrequency" value="1" type="radio">
<label for="RadioButtonListPaymentFrequency_0">One-Time Only</label>
</td>
</tr>
<tr>
<td>
<input id="RadioButtonListPaymentFrequency_1" name="RadioButtonListPaymentFrequency" value="12" type="radio">
<label for="RadioButtonListPaymentFrequency_1">Monthly</label>
</td>
</tr>
<tr>
<td>
<input id="RadioButtonListPaymentFrequency_2" name="RadioButtonListPaymentFrequency" value="4" type="radio">
<label for="RadioButtonListPaymentFrequency_2">Quarterly</label>
</td>
</tr>
<tr>
<td>
<input id="RadioButtonListPaymentFrequency_3" name="RadioButtonListPaymentFrequency" value="2" type="radio">
<label for="RadioButtonListPaymentFrequency_3">Annually</label>
</td>
</tr>
</tbody>
</table>