如何预配置 SharePoint WebPart?
预配置自定义 SharePoint WebPart 的最佳方法是什么?
例如,是否可以将文本文件添加到 WSP 包并简单地从 WebPart 读取该文件?我无法找到在部署后检索文本文件路径的方法。
或者我可以以某种方式将键值对添加到 .webpart 文件并从我的 WebPart 访问它们吗?
What is the best way to preconfigure a custom SharePoint WebPart?
Is it e.g. possible to add a textfile to the WSP package and simply read the file from the WebPart? I couldn't figure out a way to retrieve the path of the textfile after the deployment.
Or can I somehow add key value pairs to the .webpart file and access them from my WebPart?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.webpart 文件的架构位于:
http://msdn.microsoft.com/en-us/library/ms227561。 aspx
并允许您为 WebPart 设置默认值属性。
此外,由于您在程序集的上下文中运行,因此您可以从该程序集内部读取配置数据文件。这个问题的第一个答案向您展示了如何:
如何读取嵌入资源文本文件
The schema for .webpart files is here:
http://msdn.microsoft.com/en-us/library/ms227561.aspx
and allows for you to set default value properties for your WebPart.
Also, since you are running in the context of an assembly, you could read a file of config data from inside that assembly. The first answer to this question shows you how:
How to read embedded resource text file