如何预配置 SharePoint WebPart?

发布于 2024-11-11 20:14:46 字数 170 浏览 1 评论 0原文

预配置自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攀登最高峰 2024-11-18 20:14:46

.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文