Is there any benefit of using
<asp:ImageButton ID="btn" runat="server" OnClientClick="javascript:return validate();" />
instead of
<asp:ImageButton ID="btn" runat="server" OnClientClick="return validate();" />
?
What is the purpose of prepending with javascript:? Should I use it? Pros and cons?