Why is it that in .aspx pages all events are preceded with "On" e.g. "OnClick", "OnCommand" and in the code-behind file they are referred "Click", "Command"? Just Naming Convention or is there some logical explanation?

link|improve this question
feedback

4 Answers

up vote 2 down vote accepted

Those methods are actually the methods called when the events are raised. Typically they will check if there are any subscribers. It has always been unclear to me why they are virtual.

Take a look at this code for the Button control.

protected virtual void OnClick(EventArgs e)
{
    EventHandler handler = (EventHandler) base.Events[EventClick];
    if (handler != null)
    {
        handler(this, e);
    }
}
link|improve this answer
4  
This is not correct, or is referring to a different topic than what the OP is asking about. The "On[event]" property used in markup to assign a handler method by its name has nothing to do with the On[Event] method which raises that event. The "On-" convention is hard-wired into the parsing of the ASPX markup itself to tie events to handlers by their string name. – Rex M Jan 24 '10 at 5:46
It appears I misread the question. – ChaosPandion Jan 24 '10 at 5:51
@Rex M - Your comment is also an answer. – ChaosPandion Jan 24 '10 at 5:52
feedback

The names of the events themselves are Click, Change, etc... The internal methods to fire those events from code are prefixed with "On" as a naming convention. In ASP.NET markup, you use the attribute OnClick but what you're really doing is wiring a method to the "Click" event. Therefore, the method autogenerated for you by VS is ButtonName_Click. This method is internally passed as a delegate to the event itself.

link|improve this answer
On Click, do the Click Method. I guess one could called it Button1_Clicked method, for more accuracy. – Atømix May 12 '10 at 17:49
feedback

AFAIK, just naming convention. They had to start with something :-) Prior to ASP.NET I think it was also like this in Windows applications and in JavaScript.

http://www.c-sharpcorner.com/UploadFile/puranindia/165/

http://webdevelopersjournal.com/articles/jsevents1/jsevents1.html

link|improve this answer
Just a name convention that follows VB style. Interesting that Delphi/VCL convention is just the opposite. – Lex Li Jan 24 '10 at 12:32
feedback

I may have your question wrong, but from what I can tell by what your asking, the EVENT and the PROPERTY cannot have the same name

The event is "Click"... example.

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click

But in the actual control, there is a property called "OnClick" whereby it activates the "Click" event. Therefor they cannot be named the same thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.