I want do disable postback after clicking a . I\'ve tried to do that by assigning onclick=\"return false\", but in the button doe
onclick=\"return false\"
onClientClick="return false"
That should do it! Onclick will refer to an ASP.net function, onClientClick will render as OnClick on the control in HTML.
Onclick
onClientClick
OnClick