12-18-06 12:18 PM
We need to have the following line in httpmodules section in Web.CONFIG.
<add type="Microsoft.ContentManagement.Publishing.Events.PostingEventsModule
, Microsoft.ContentManagement.Publishing, Version=5.0.1200.0, Culture=neutra
l, PublicKeyToken=31bf3856ad364e35" name="CmsPosting"/>
We had a duplicate line of this with different value in name attribute... Th
at was the issue.
In Global.asax file we need to have this. CmsPosting is the name value in th
e web.config line mentioned above. We need to have add _Approved for Approve
d Event. Similarly we can have for other events.
public void CmsPosting_Approved(Object sender, ChangedEventArgs e)
{
///TODO: Add Event Handler Code!
}
[ Post a follow-up to this message ]
|