officeba > 单独文章


玩转SharePoint 2007(三十三):实现通用Event Handler(1)——完成准备工

摘要
 
  前面一篇文章中,我们实现Event Handler的方法只适合文档列表的操作,实际上这也是SharePoint 2003能做到的事情,但2003中却不能为除文档之外的列表添加Event Handler。在2007中,会不会有所改进呢?比如用户进行删除一篇Announcements的动作,我们希望能提示没有权限删除,并阻止该次删除动作,该怎么做到呢?
  本篇文章将介绍实现通用Event Handler的第一部分——完成Event Handler的准备动作。
  为了方便您的学习,您可以下载本篇文章所创建的工程。单击此处下载。
 
正文
 
  为了更清晰地让朋友们了解实现通用Event Handler的几个步骤,本篇文章将被分割成两个小的部分,第一部分讲解完成准备工作,第二部分讲解尝试Event Handler。因此而给大家带来的阅读不便,就请海涵了:)

  下面将记录每一步的操作过程。
  1、首先打开打开Microsoft Visual Studio 2005,创建一个名为Eallies.EventHandler.SP2007的Class Library。


  2、创建完成后,将默认的Class1.cs改名为ListHandler.cs。


  3、为项目添加Microsoft.SharePoint.dll的引用。
  4、将项目的输出目录更改为C:\Inetpub\wwwroot\wss\VirtualDirectories\9001\_app_bin。
  5、为项目创建强名称。
  6、更改ListHandler.cs为如下的代码:

    1 using System;

    2 using System.Collections.Generic;

    3 using System.Text;

    4 

    5 using Microsoft.SharePoint;

    6 

    7 namespace Eallies.EventHandler.SP2007

    8 {

    9     public class ListHandler : SPItemEventReceiver

   10     {

   11         public override void ItemDeleting(SPItemEventProperties properties)

   12         {

   13             properties.Cancel = true;

   14             properties.ErrorMessage = "You have no access to delete it.";

   15         }

   16     }

   17 }



  7、向解决方案中添加一个名为Eallies.EventHandler.Register的Console Application项目。
  8、为Eallies.EventHandler.Register项目添加Microsoft.SharePoint.dll的引用。
  9、使用Reflector找到Eallies.EventHandler.SP2007项目的Assembly信息。


  10、将Eallies.EventHandler.Register项目中的Program.cs更改为如下的代码:

    1 using System;

    2 using System.Collections.Generic;

    3 using System.Text;

    4 

    5 using Microsoft.SharePoint;

    6 

    7 namespace Eallies.EventHandler.Register

    8 {

    9     class Program

   10     {

   11         static void Main(string[] args)

   12         {

   13             SPSite site = new SPSite("https://denny-zhang:9001/sites/Wodeweb");

   14             SPWeb web = site.OpenWeb("Docs");

   15             SPList list = web.Lists["Announcements"];

   16 

   17             list.EventReceivers.Add(SPEventReceiverType.ItemDeleting, "Eallies.EventHandler.SP2007, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c7f921ec4a7dede8", "Eallies.EventHandler.SP2007.ListHandler");

   18         }

   19     }

   20 }



  11、编译Eallies.EventHandler.SP2007项目,并将编译后的DLL加入到操作系统的GAC中。


  12、运行Eallies.EventHandler.Register项目。

  至此,实现通用Event Handler的准备工作就完成了。
  下一篇文章我将记录如何实现通用Event Handler的最后一部分——尝试Event Handler的过程。欢迎大家继续关注:)多谢!

声明:欢迎各大网站转载本站文章,还请保留一条能直接指向本站的超级链接,谢谢!

时间:2007-05-09 14:25:49,点击:65824


【OfficeBa论坛】:阅读本文时遇到了什么问题,可以到论坛进行交流!Excel专家邮件:342327115@qq.com(大家在Excel使用中遇到什么问题,可以咨询此邮箱)。

【声明】:以上文章或资料除注明为Office自创或编辑整理外,均为各方收集或网友推荐所得。其中摘录的内容以共享、研究为目的,不存在任何商业考虑。如有任何异议,请与本站联系,本站确认后将立即撤下。谢谢您的支持与理解!


相关评论

我要评论

评论内容