Hello,
I have two radio buttons defined as follows:
<td><INPUT id="rdbGU" runat="server" type="radio" size="20" value="G" name="Type" onclick="EnableBottom()" onserverchange="rdbGU_ServerChange">Global Update</td>
<td ><INPUT id="rdbQ" runat="server" type="radio" size="20" value="Q" name="Type" onclick="EnableBottom()" onserverchange="rdbQ_ServerChange">Query Builder</td>
I use HTML buttons (instead of ASP.NET ones) as I also want to fire a javascript function with the onclick control event.
Those buttons worked perfectly but today, when I check one of them, there is no action until I click on another ASP.NET control that fires the code-behind radio button.
Thanks for your help !
I have two radio buttons defined as follows:
<td><INPUT id="rdbGU" runat="server" type="radio" size="20" value="G" name="Type" onclick="EnableBottom()" onserverchange="rdbGU_ServerChange">Global Update</td>
<td ><INPUT id="rdbQ" runat="server" type="radio" size="20" value="Q" name="Type" onclick="EnableBottom()" onserverchange="rdbQ_ServerChange">Query Builder</td>
I use HTML buttons (instead of ASP.NET ones) as I also want to fire a javascript function with the onclick control event.
Those buttons worked perfectly but today, when I check one of them, there is no action until I click on another ASP.NET control that fires the code-behind radio button.
Thanks for your help !