以编程方式在sharepoint 2010中的自定义列表中添加附件

时间:2011-03-10 08:53:08

标签: sharepoint-2010

我在自定义列表中注册了ItemAttachmentAdded。任何人都会向我发送一些代码,如何在自定义列表中添加附件。

1 个答案:

答案 0 :(得分:0)

谷歌告诉我该怎么做:

http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spattachmentcollection.add.aspx

byte[] fileData = GetFileData();
SPContext.Current.Web.Lists["My List"].Items[0].Attachments.Add("filename", fileData)