Prevent LinkButton post back OnClientClick not working. Why?

Right, figured it out. I needed to include the return statement in the OnClientClick attribute:

OnClientClick="return showConfirm(event);"

NOT

OnClientClick="showConfirm(event);"

Leave a Comment