F
fxs
Hello,
I have the following controls on an aspx page: 2 html radio button
controls, 1 asp:label control and 1 asp:button control....
<INPUT id="rdo1" type="radio" name="grp1" onClick="clientsidecode();">
<INPUT id="rdo2" type="radio" name="grp1" checked
onclick="clientsidecode();">
<asp:Label id="Label1" runat="server">Label</asp:Label>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
I'm confused as to whether it is possible at all, and if possible, how I
would do the following:
(1) Access the values of the HTML radio buttons in the Button1_Click()
function in the code behind; and display the value on the asp:Label on the
page.
(2) on click of the radio button (in the javascript function
clientsidecode()), write something to the asp:Label control.
Is this possible? How would I do this? Thanks in advance,
Fxs.
One ASP:Label control
I have the following controls on an aspx page: 2 html radio button
controls, 1 asp:label control and 1 asp:button control....
<INPUT id="rdo1" type="radio" name="grp1" onClick="clientsidecode();">
<INPUT id="rdo2" type="radio" name="grp1" checked
onclick="clientsidecode();">
<asp:Label id="Label1" runat="server">Label</asp:Label>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
I'm confused as to whether it is possible at all, and if possible, how I
would do the following:
(1) Access the values of the HTML radio buttons in the Button1_Click()
function in the code behind; and display the value on the asp:Label on the
page.
(2) on click of the radio button (in the javascript function
clientsidecode()), write something to the asp:Label control.
Is this possible? How would I do this? Thanks in advance,
Fxs.
One ASP:Label control