SharePoint - 不要更改更新的修改日期
我目前正在部署带有发布页面的 SharePoint 解决方案。这些页面允许用户选择“不更新修改日期”。
这是通过放置在页面上的一个小控件来解决的。
<ctrl:ModifiedFieldManager FieldName="Modified" runat="server" id="modifiedmanager">
</ctrl:ModifiedFieldManager>
该控件创建一个用户可以选中或不选中的复选框。
如果选中,修改后的字段应保持不变。 该控件源自“BaseFieldControl”。
public override void UpdateFieldValueInItem()
{
base.EnsureChildControls();
if (this.ModifiedFieldManagerBox.Checked)
{
this.Value = this.Item["Modified"];
base.UpdateFieldValueInItem();
}
else
{
this.Value = DateTime.Now;
}
}
如果选中,上面的代码负责将“旧”修改日期写回项目。
这段代码的有趣之处在于 - 如果我以管理员身份登录它就可以工作。 作为普通用户,此代码会被执行,但修改日期仍然是当前日期和时间。
有人能给我一些如何为普通用户解决这个问题的建议吗?
提前谢谢
史蒂夫
I'm currently deploying a SharePoint solution with publishing pages. These pages allow the user to select "Do not update the modified-date".
This is solved by a small controll placed on the page.
<ctrl:ModifiedFieldManager FieldName="Modified" runat="server" id="modifiedmanager">
</ctrl:ModifiedFieldManager>
This control creates a checkbox the user can check or not.
If checked the modified field should stay the same.
The control derives from "BaseFieldControl".
public override void UpdateFieldValueInItem()
{
base.EnsureChildControls();
if (this.ModifiedFieldManagerBox.Checked)
{
this.Value = this.Item["Modified"];
base.UpdateFieldValueInItem();
}
else
{
this.Value = DateTime.Now;
}
}
The code above is responsible to write the "old" Modified-Date back to the item if checked.
The funny thing about this code is - it works if I'm logged in as admin.
As a normal user this code gets executed but the modified date is still the current date and time.
Could anyone give me some advice how to solve this for normal users?
Thx in Advance
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您使用 SystemUpdate 来确保 SPListItem 上的修改字段不会更改。
更多信息
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.systemupdate.aspx
Generally, you use SystemUpdate to ensure the modified fields are not changed on teh SPListItem
More info
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.systemupdate.aspx