2

我有一个事件接收器(WebAdding 和 WebProvisioned),它适用于从站点集的根目录创建的站点。但是,子站点(例如,在其他区域内创建的团队站点)根本不会触发代码。

有谁知道为什么?

using System;
using System.Security.Permissions;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Security;
using Microsoft.SharePoint.Utilities;
using Microsoft.SharePoint.Workflow;
using System.Text;

namespace TestEventReceiver.EventReceiver1
{
  /// <summary>
  /// Web Events
  /// </summary>
  public class EventReceiver1 : SPWebEventReceiver
  {
    /// <summary>
    /// A site is being provisioned.
    /// </summary>
    public override void WebAdding(SPWebEventProperties properties)
    {
      base.WebAdding(properties);

      using (SPWeb web = properties.Web)
      { 
        StringBuilder output = new StringBuilder();
        output.AppendFormat("Web Adding");
        output.AppendFormat("<br>Web title: {0}",web.Title);
        SendMyEmail(web, "SendItToMe@MyTestAddress.com", "Web Adding", output.ToString());
      }
    }

    /// <summary>
    /// A site was provisioned.
    /// </summary>
    public override void WebProvisioned(SPWebEventProperties properties)
    {
      base.WebProvisioned(properties);
      using (SPWeb web = properties.Web)
      {
        StringBuilder output = new StringBuilder();
        output.AppendFormat("Web Provisioned");
        output.AppendFormat("<br>Web title: {0}", web.Title);
        SendMyEmail(web, "SendItToMe@MyTestAddress.com", "Web Provisioned", output.ToString());
      }
    }

    private void SendMyEmail(SPWeb Web, String toAddress, String subject, String message)
    {
      bool appendHtmlTag = false;
      bool htmlEncode = true;
      SPSecurity.RunWithElevatedPrivileges(delegate()
      {
        SPUtility.SendEmail(Web, appendHtmlTag, htmlEncode, toAddress, subject, message);
      });

    }

  }
}

在此先感谢,马特

4

5 回答 5

2

我认为你不应该使用 'Using' 。您获得的 SPWeb 对象引用来自正在传递给 WebAdding 方法的 properties.Web。因此,您将遇到问题。

于 2011-07-12T03:15:32.940 回答
1

看看您的事件接收器是如何配置的——可能需要将范围更改为站点而不是 Web。也许你可以在这里发帖让我们看看。

于 2011-11-14T11:38:54.353 回答
1

在我的网站上,我遇到了同样的问题。仍在计算 xml 文件,但在我的接收器的 Elements.xml 文件中,每个接收器具有相同的序列号。一旦我使它们在 Elements.xml 文件中唯一,WebProvisioned 事件就开始触发。不知道是不是和你遇到的一样的问题。

于 2012-01-26T23:20:35.410 回答
0

尝试更改接收器的范围(在 Elements.xml 文件中添加属性)。此外,请确保您的事件接收器的功能已在子站点的站点功能中激活。

于 2013-07-01T13:17:00.150 回答
0

此代码显示 WebAdding 事件,并且该事件正在父 Web 上发生。

http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spwebeventreceiver.webadding.aspx

于 2011-04-07T04:27:42.583 回答