I\'m trying to use the ImageButton control for client-side script execution only. I can specify the client-side script to execute using the OnClientClick property, but how d
Use OnClientClick to write your script and PostBackUrl="javascript:void(0);" to avoid postback
<image src="..." onclick="DoYourThing();" />