我可以使用文件作为自定义 SharePoint WebPart 属性吗?
是否可以使用文件作为自定义 SharePoint Webpart 属性?我想在WebPart编辑菜单中提供一个文件上传框。 (“修改此 Web 部件”->“自定义属性”)。
根据文档(MSDN - 创建 Web 部件使用自定义属性)默认情况下仅支持 bool、int、string、enum 和 datetime 类型。
有什么办法可以让用户上传文件吗?
Is it possible to use a file as custom SharePoint Webpart property? I would like to provide a file upload box in the WebPart editing menu. ("Modify This Web Part" -> "Custom Properties").
According to the documentation (MSDN - Creating a Web Part with Custom Properties) by default only bool, int, string, enum and datetime types are supported.
Is there any way to allow the user to upload a file instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个允许用户上传文件的自定义 EditorPart(或 Toolpart)。我喜欢 Bil Simser 的博客,因为他帮助模仿开箱即用的 SharePoint 样式:
http:// weblogs.asp.net/bsimser/archive/2009/08/12/spreading-some-sharepoint-love-to-editorpart.aspx
这是另一个也需要 Toolpart 和 MSDN 上的示例。
You could create a custom EditorPart (or Toolpart) that allows the user to upload a file. I like Bil Simser's blog because he helps mimic out of the box SharePoint styles:
http://weblogs.asp.net/bsimser/archive/2009/08/12/spreading-some-sharepoint-love-to-editorpart.aspx
Here is another answer of someone who also needed a Toolpart and the example on MSDN.