Is it possible to have two function calls in a onclick? I tried doing something like:
onclick="function1(); function2();"
Doing that it only executes the first function, but not the second. Anyway to have both in the onclick? It code be on the client side or in the code behind in C#.
Thanks!
function2is not called, then you have an error infunction1.