Sharepoint在Event中修改字段数据
Posted petewell
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sharepoint在Event中修改字段数据相关的知识,希望对你有一定的参考价值。
摘要:Sharepoint在Event中修改字段数据
public override void ItemUpdating(SPItemEventProperties properties)
try
string newFieldValue = GetNewFieldValue();
object oldFieldValue = properties.AfterProperties[COLUMN_NAME];
if (oldFieldValue == null || oldFieldValue.ToString() != newFieldValue)
properties.AfterProperties[COLUMN_NAME] = newFieldValue;
catch
//Log the error, or take another appropriate action.
finally
base.ItemUpdating(properties);
原文:大专栏 Sharepoint在Event中修改字段数据
以上是关于Sharepoint在Event中修改字段数据的主要内容,如果未能解决你的问题,请参考以下文章
Mysql event时间触发器,实现定时修改某些符合某一条件的某一字段