I want to call two functions on button click I tried like this
Another option is to use the onclientclick
event which allows you to run a JS function w/o a server interaction.
In the first button (adds a new row to the table), I have a server side onclick="btnAdd_Click"
as well as a client side OnClientClick="javascript:ResetSaveFlag()"
.
The second button (clears a row and sets a "clean" flag so onbeforeunload won't run), I'm not using any server side code, just the client side OnClientClick="javascript:ResetSaveFlag(); javascript:clearEntries(this)"
. The first one clears the "dirty" flag and the second one clears the row of any entries.
If anyone's interested I can post the clean & dirty flag JS, but it didn't really seem germane to the original question.