Take this scenario, for instance:
<asp:Button id="Button1"
Text="Click here for greeting..."
OnClick="GreetingBtn_Click"
runat="server"/>
Therefore, I pose these inquiries:
Is the OnClick attribute related to a javascript event on the client side? If so, does it imply that asp.net will inject javascript code into the page before sending it back to the browser?
Considering JavaScript's case sensitivity, should "OnClick" actually be written as "onclick"?