Say I want to use the TextChanged event on a TextBox. Why does the event show up in the aspx file as "OnTextChanged"?
<asp:TextBox ID="Textbox1" runat="server"
OnTextChanged="Textbox1_TextChanged"></asp:TextBox>
Coming from both a WPF and WinForms background, this seems odd to me. I am used to seeing event names referred to in the same manner. What is happening in the background to change "OnTextChanged" to just "TextChanged".