I have written one JavaScript function which would rise the event when the User clicks the CheckBox.
But I have already written some other function which too has to rise when the user clicks the CheckBox. I included that function on onClick event like below:
<asp:CheckBox ID="chkSelect" runat="server" Checked='<%#Bind("Select") %>' onClick="CheckedTotal();" />
But now I want to include another function called “EnableLink” into that onClick event of the CheckBox. How to include this function to the CheckBox? I have tried to combine both the function as a single one. But it has become a complex one for me. So Is there any alternate way for this?
Lots of ways to do this..quickest one