1

我的问题是:在用户创建站点后的 Sharepoint 2010 中,首先我需要将用户重定向到我的自定义页面,而不是将用户重定向到新站点的 url。

我为网络创建了事件接收器,并在使用 SPUtility.Redirect() 在我的页面上创建重定向后尝试了站点:

public class MySiteEventReceiver : SPWebEventReceiver
{
    public override void WebProvisioned(SPWebEventProperties properties)
    {
        var web = properties.Web;
        base.WebProvisioned(properties);

        string url = web.Site.Url + "/_LAYOUTS/MyPage.aspx";
        SPUtility.Redirect(url, SPRedirectFlags.CheckUrl, HttpContext.Current);
    }
}

但始终 HttpContext.Current 为空。

我在 intrnet 中寻找我的问题的解决方案。我找到了它:http ://www.sharepointkings.com/2008/05/httpcontext-in-eventhandler.html

我做的:

public class MySiteEventReceiver : SPWebEventReceiver
{
    private static HttpContext oContext;

    public SubSiteEventReceiver() : base()
    {
        if (oContext == null)
        {
            oContext = HttpContext.Current;
        }
    }
    public override void WebProvisioned(SPWebEventProperties properties)
    {
        var web = properties.Web;
        base.WebProvisioned(properties);

        string url = web.Site.Url + "/_LAYOUTS/MyPage.aspx";
        SPUtility.Redirect(url, SPRedirectFlags.CheckUrl, oContext);
    }
}

之后 HttpContext 不为空(我为 WebProvisioned 属性设置了同步)

<Synchronization>Synchronous</Synchronization>

但在这种情况下,我收到错误“无法评估表达式,因为代码已优化或本机框架位于调用堆栈之上”。

我还尝试采用另一种方式进行重定向。 http://sharesilver.wordpress.com/2011/07/24/sharepoint-bugs-1-item-deleting-event-receiver/

但在这种情况下,也没有什么是行不通的。

我将不胜感激任何尝试提供帮助!

4

2 回答 2

0

您需要添加一个构造函数来检索当前的 httpcontext,否则您的上下文将始终为空。

请参阅以下示例:http ://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/thread/8cfcb299-9a55-4139-86ec-0b53b2922a54/

于 2012-05-08T16:57:22.063 回答
0

嗨,你可以试试这个从事件接收器重定向到你的自定义页面

    properties.Status = SPEventReceiverStatus.CancelWithRedirectUrl;
    properties.RedirectUrl = "/_layouts/EventReceiver/CustomError.aspx";

有关更多详细信息,请查看此网址

http://www.c-sharpcorner.com/uploadfile/anavijai/how-to-redirect-to-a-custom-page-for-event-receiver-in-sharepoint-2010/

让我知道是否工作。谢谢

于 2012-05-05T11:13:02.590 回答