我有一个事件接收器,它会在 SPList 中的 SPListItem 更新时触发。我正在使用 ItemUpdated() 事件。
我想从事件之前获取值,以便比较已编辑的字段。
我怎么做?
if (properties.ListTitle == "Lista")
{
if (properties.AfterProperties["Start Time"].ToString() != properties.ListItem["Start Time"].ToString())
{
string s = "hej";
}
}
try
{
// ID for the site from the properties object
Guid siteId = properties.SiteId;
// ID for the list from the properties object
Guid listId = properties.ListId;
// ID for the list item from the properties object
int listItemId = properties.ListItemId;
SPSecurity.RunWithElevatedPrivileges(delegate()
{
// Code stuff
});