Hello,
I’ve noticed that on several occasions that MSDN uses “wrong” terminology when referring to events and their event handlers. For example:
The ProfileAutoSaving event is raised at the end of page execution if the ProfileManager.AutomaticSaveEnabled property is true. You can access the ProfileAutoSaving event of the ProfileModule class in the Global.asax file for your ASP.NET application using the Profile_ProfileAutoSaving global event
Why does the above quote describe Profile_ProfileAutoSaving as global event, when to my knowledge it is actually an event handler subscribed to ProfileAutoSaving event?!
thanx