gpt4 book ai didi

sharepoint - 如何创建带有到期日期的 SharePoint 调查?

转载 作者:行者123 更新时间:2023-12-03 11:26:10 27 4
gpt4 key购买 nike

我有自定义调查,在 RootWeb.Properties 中有到期日期。如何在到期日期后将所有想要回复调查的用户(单击“回复调查”或使用指向 NewForm.aspx 的直接链接)重定向到包含一些自定义文本(即“此调查已过期”)的自定义页面?

最佳答案

您可以编写一个事件接收器来实现这一点。在事件接收器代码上,您可以检查到期日期,如果到期,您可以取消项目添加并将用户重定向到自定义页面。请注意,您的自定义 url 必须是相对 url。

public override void ItemAdding(SPItemEventProperties properties)
{
base.ItemAdding(properties);
if (DateTime.Now > "your expiration date")
{
properties.Status = SPEventReceiverStatus.CancelWithRedirectUrl;
properties.RedirectUrl = "your custom url";
}
}

关于sharepoint - 如何创建带有到期日期的 SharePoint 调查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10897526/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com