SharePoint - 不要更改更新的修改日期

发布于 2024-11-24 21:56:31 字数 834 浏览 5 评论 0原文

我目前正在部署带有发布页面的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻了热茶 2024-12-01 21:56:31

通常,您使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文