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\"
Use this:-
someID.Attributes.Add("onClick", "return false;");