public override void ItemUpdated(SPItemEventProperties properties)
{
//Send a mail once the "Status" field changed.
}
this method only will send a email if the sharePoint list's "status" field changed, will not be sending emails if any changes happens for other fields... I need to fire the event handler only when "status" field changes. how I can do this. now event is
firing whenever I make changes to any field.
Any idea.
Vimal
Moved byMike Walsh FINFriday, June 18, 2010 7:35 AMnot general (From:SharePoint - General Question and Answers and Discussion (pre-SharePoint 2010))
it never go inside "IF" loop as properties.BeforeProperties["Offer Status"] and properties.AfterProperties["Offer Status"] are null aways regardless
of what the fields value I change.