Sharepoint 2010 - 客户端对象模型将内容上传到文档库
我有以下要求:
我创建了一个嵌入 Sharepoint 应用程序页面中的 Flash 应用程序。在 Flash 应用程序中,我必须将文本(如果不提示用户,我无法在客户端创建文件,因此我只需以纯文本形式上传内容)上传到用户选择的文档库。
上传文本(作为 .url 文件)时,我必须将浏览器重定向到与库关联的编辑表单(或更具体地说与新项目的内容类型)。
如何使用客户端对象模型将内容(纯文本)作为新文档上传到文档库?
亲切的问候,
卡雷尔
I have the following requirement:
I have created a Flash application that is embedded in a Sharepoint Application Page. In the Flash application I have to upload text (I cannot create a file on the client side without prompting the user, so I just have to upload the content in plain text) to a document library of the user's choice.
When the text is uploaded (as a .url file), I have to redirect the browser to the edit form that is associated with the library (or more specific with the content type of the new item).
How can I upload content (plain text) as a new document to a Document library using the Client Object Model?
Kind regards,
Karel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用客户端对象模型的 FileCreationInformation 类将文件上传到 SharePoint,该类的 Content 属性是字节数组。
你可以像这样使用它:
You can upload files to SharePoint using the Client Object Model's FileCreationInformation class which has a Content property that is a byte array.
You might use it like so: