Is it possible to use the onclientclick property of a button to do a clientside check. If the check returns true, then fire the onclick
onclientclick
true
onclick
Sure. If you use return false within your OnClientClick it will prevent any navigation from happening. So you're code would look like:
return false
OnClientClick