私は ASP を初めて使用し、次のコードを持っています。
<tr>
<td style="padding-bottom:5px;">Would you return to this practice again? <asp:RequiredFieldValidator SetFocusOnError="true" ID="rfvReturn" runat="server" ControlToValidate="rblReturn" ErrorMessage="*" ForeColor="Red" Font-Bold="true" Display="Dynamic" /></td>
<td style="padding-bottom:5px;">
<asp:RadioButtonList runat="server" ID="rblReturn" RepeatDirection="Horizontal">
<asp:ListItem Value="true" Text="Yes" />
<asp:ListItem Value="false" Text="No" />
</asp:RadioButtonList>
</td>
</tr>
<tr class="spaceUnder">
<td style="padding-bottom:5px;">Would you refer a friend to this practice? <asp:RequiredFieldValidator SetFocusOnError="true" ID="rfvRefer" runat="server" ControlToValidate="rblRefer" ErrorMessage="*" ForeColor="Red" Font-Bold="true" Display="Dynamic" /></td>
<td style="padding-bottom:5px;">
<asp:RadioButtonList runat="server" ID="rblRefer" RepeatDirection="Horizontal">
<asp:ListItem Value="true" Text="Yes" />
<asp:ListItem Value="false" Text="No" />
</asp:RadioButtonList>
</td>
</tr>
このコードは、次のものを作成します。
私がやりたいことは、ラジオボタンを切り替えて次のように見える画像に置き換えることです:
どこでも検索しましたが、それを行う方法が見つからないようです。