Adding Event Handlers for all Lists in SharePoint Using Features in WSS 3.0

To add event handler to all document libraries in the site:
Create a Class Library project "EventHandlerProject" in Microsoft Visual Studio 2005.
Add a class named "EventHandler".
Inherit this class from "SPItemEventReceiver".
Override the ItemDeleting method as follows:
public override void ItemDeleting(SPItemEventProperties properties)
{
base.ItemDeleting(properties);
properties.Cancel = true;
properties.ErrorMessage = "It should work now. its already too late";
}
Compile the above project and add the assembly in cache.
Create an elements.xml file and put the fillowing xml in it.
<elements xmlns="http://schemas.microsoft.com/sharepoint/">
<receivers listtemplateid="101">
<receiver>
<name>ItemDeleting</name>
<type>ItemDeleting</type>
<sequencenumber>400</sequencenumber>
<assembly>EventHandlerProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a1901tr121134ect</assembly>
<class>EventHandlerProject.EventHandlerClassName</class>
<data></data>
<filter></filter>
</receiver>
</receivers>
</elements>

Create a feature.xml and put following XML in it.
<feature scope="site" id="FBC1E9AD-741E-492a-84FB-491B7FCA1D79" title="Event Handler Feature" xmlns="http://schemas.microsoft.com/sharepoint/" description="My feature." hidden="false">
<elementmanifests>
<elementmanifest location="Elements.xml" />
</elementmanifests>
</feature>

Comments

Popular posts from this blog

Unable to delete Shared Services Provider in SharePoint (MOSS)

The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.

Cannot add a SimpleContent column to a table containing element columns or nested relations