我有一个radiobuttonlist,我想在其更改事件中更改文本框中的水印文本。
但我无法从RadioButtonList调用Javascript函数,也无法检索所选字段的值。
以下是相同的代码。
<asp:RadioButtonList ID="rdbSelectType" runat="server" CssClass="radioButtonList" RepeatDirection="Horizontal" AutoPostBack="true" OnSelectedIndexChanged="rdbSelectType_SelectedIndexChanged">
<asp:ListItem Selected="True" Value="0" Text="Auto Generate"></asp:ListItem>
<asp:ListItem Value="1" Text="Manually Generate"></asp:ListItem>
</asp:RadioButtonList>
有人可以帮我吗?