What do you understand by event receivers in SharePoint?

Event Receivers are custom methods that are written to handle certain events within a list or document library. There are basically two types of event receivers, which are as follows:
  • Synchronous Events - these events are like "ItemAdding" or "Uploading"
  • Asynchronous Events - these events are like "ItemAdded" or "Uploaded" 
The Event Receivers are either derived from the base class "SPListEventReceiver" or "SPItemEventReceiver".

Comments

Popular posts from this blog

What is the difference between a Page Layout and Master Page in SharePoint?

Accessing data from SharePoint 2010 to an ASP.NET application

What is the difference between DDL, DML and DCL?