Hi,
I have a choice field called stage lets assume it has following values used as a dropdown
stage1
stage2
stage3
on change of stage I would like to record TimeStamp and Who updated the item information
How can I do it on my List without creating any other list, I think using Versioning I can add a new version whenever before and after properties are change on that Field.
//ItemUpdating Event
if(properties.ListItem["Stage"] != properties.AfterProperties["Stage"])
{
//Create a Version;
}
I cannot find how to create a version here, Please guide.
Thnaks Amit