sharepoint列表EventHandle的開發 -轉

來源:互聯網
上載者:User
http://www.cnblogs.com/chairongzhen/articles/1064235.html需求:用表單收集來的部分資料在建立表單的同時,能有一份資料同時也能進入到相應資料庫裡面,以便日後的資料分析。

這想法看起來挺不錯的,但具體要怎樣實現呢?剛好,在sharepoint中有事件這個概念,在開發人員中常被稱為EventHandle。無論是對網站的操作還是對文件庫、列表庫、清單項目的操作,但可以觸發相關的Event。正基於此,我們可以通過Event的方式,當建立一個文檔時,將文檔中的相關資料存放到SQL資料庫中。至此,分析完畢,具體操作,請看下面實現步驟:
第一步:
先在SQL資料庫裡建立表,表名為“報銷單”,具體欄位如:

用來存放表單中的資料。
第二步:
用VS一個項目,建立類型為類庫,項目名稱為“EventHandle”。並將Class1.cs改名為listEventHandle.cs。在引用中加入Microsoft.SharePoint.dll。以下為listEventHandle.cs的原碼,定義了列表的增,刪,改事件:

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SharePoint;
using System.Data.SqlClient;

namespace EventHandle
{
    public class listEventHandle:SPItemEventReceiver
    {
        public override void ItemAdded(SPItemEventProperties properties)
        {
            SynchronizationSQL(properties);
        }
        public override void ItemUpdated(SPItemEventProperties properties)
        {
            SynchronizationSQL(properties);
        }

        public SqlConnection createConn()
        {
            SqlConnection conn = new SqlConnection("Data Source=cdh10000;Initial Catalog=oalistDataToTable;User ID=sa;Password=111111");
            conn.Open();
            return conn;

        }
       
        public override void ItemDeleting(SPItemEventProperties properties)
        {
            SPListItem item = properties.ListItem;
            string itemid = properties.ListItem.ID.ToString();

            SqlConnection conn = createConn();
           
            SqlCommand cmd = new SqlCommand("delete from 報銷單 where listitem_id='" + itemid + "'", conn);
            cmd.ExecuteNonQuery();
            conn.Close();
        }

        void SynchronizationSQL(SPItemEventProperties properties)
        {
            SPListItem item = properties.ListItem;
            string itemid = properties.ListItem.ID.ToString();
            string name = item["姓名"].ToString();
            string department = item["部門"].ToString();
            string timeto = item["時間"].ToString();
            string money = item["金額"].ToString();
            string eventto = item["事由"].ToString();

            SqlConnection conn = createConn();

            SqlCommand cmd = new SqlCommand("select listitem_id from 報銷單 where listitem_id='" + itemid + "'", conn);

            if (Convert.ToInt32(cmd.ExecuteScalar()) > 0)
            {
                cmd = new SqlCommand("update 報銷單 set 姓名='" + name + "',部門='" + department + "',時間='" + timeto + "',金額='" + money + "',事由='" + eventto + "' where listitem_id='" + itemid + "'", conn);
                cmd.ExecuteNonQuery();
            }
            else
            {
                cmd = new SqlCommand("insert into 報銷單(listitem_id,姓名,部門,時間,金額,事由) values('" + itemid + "','" + name + "','" + department + "','" + timeto + "','" + money + "','" + eventto + "')", conn);
                cmd.ExecuteNonQuery();
            }
          
            conn.Close();

        }
     

    }
}

最後別忘了加入強式名稱,產生項目。用Reflector.exe擷取EventHandle.dll的程式集名稱跟公開金鑰.並將EventHandle.dll拖入
c:\WINDOWS\assembly檔案夾中。重啟IIS。

第三步:
用VS再建立一個控制台應用程式項目:項目名稱為“EventRunning”。在引用中加入Microsoft.SharePoint.dll。在Program.cs中加入代碼如下:

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SharePoint;
using System.Data.SqlClient;

namespace EventRunning
{
    class Program
    {
        static void Main(string[] args)
        {
            SPSite site = new SPSite("http://cdh10000");
            SPWeb web = site.OpenWeb();
            SPList list = web.Lists["報銷單"];

            string asmName = "EventHandle, Version=1.0.0.0, Culture=neutral, PublicKeyToken=01dc07d3d1e20903";//程式集名稱
            string className = "EventHandle.listEventHandle";//程式集中的類名

            list.EventReceivers.Add(SPEventReceiverType.ItemAdded, asmName, className);
            list.EventReceivers.Add(SPEventReceiverType.ItemUpdated, asmName, className);
            list.EventReceivers.Add(SPEventReceiverType.ItemDeleting, asmName, className);
           
        }
    }
}

運行項目即可。至此,報銷單文件庫的Event事件已經完成。
第四步:
就是查看我們的成果了,let's go!
進入報銷單庫,建立一個表單,填寫表單內容如下,

再看一下SQL資料庫表中的資料,如:

呵呵,SQL資料庫中的資料與表單資料剛好一致,酷吧!這時大家就可以發揮一下想像力了......

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.