如何在 Sharepoint 中配置 Web 部件的设置?
我将 SharePoint Server 2007 Enterprise 与 Windows Server 2008 Enterprise 结合使用。我正在发布门户模板。
我想开发一个WebPart并进行一些可配置的设置(就像我们可以在app.config中配置控制台应用程序的参数一样)
例如,授权用户可以在编辑页面中设置WebPart的参数(从基于浏览器的UI界面),然后<代码>选择->修改 WebPart 属性,或在 SharePoint Designer 中编辑参数。
这些参数将是应用程序特定的参数。
我该怎么做呢?
I am using SharePoint Server 2007 Enterprise with Windows Server 2008 Enterprise. I am publishing a portal template.
I want to develop a WebPart and make some settings configurable (just like we can configure parameters for a console application in app.config)
For example, authorized users could set parameters of WebPart in Edit Page (from browser based UI interface), then Select -> Modify WebPart
properties, or edit parameters in SharePoint Designer.
The parameters would be application specific parameters.
How do I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 Web 部件上创建属性并添加属性,如下所示...
您应该检查 此处查看有关该主题的完整列表和一篇好文章。
You can make your properties on the webpart and add attributes like so....
You should check here for a full list and a good article on the subject.
检查并查看这有助于
为 Sharepoint 2007 和 ASP.NET 2.0 WebPart 编写自定义编辑器
Check and see of this helps
Writing custom editors for Sharepoint 2007 and ASP.NET 2.0 WebParts