OnClientClick="SomeMethod()"
event of that BUTTON, it return by default “true
” so after that function it do postback
for solution use
//use this code in BUTTON ==> OnClientClick="return SomeMethod();" //and your function like this <script type="text/javascript"> function SomeMethod(){ // put your code here return false; } </script>