VS2008 中对 SharePoint 2007 应用程序页面的 DesignTime 支持
VS2008 中是否有针对 SharePoint 应用程序页面的设计时支持?
我写了一个 SPService,我想为属性开发一个 UI 运行此 SPService 所必需的人员。但我无法得到 VS2008 中的设计时支持。我正在创建一个继承的自定义 ASPX 来自 GlobalAdminPage 并具有“_admin/admin.master”母版页。
提前致谢!
Is there design time support in VS2008 for SharePoint Application Pages?
I've wrote an SPService and I want to develop an UI for the properties
who are necessary for running this SPService. But I can't manage to get
design time support in VS2008. I'm creating an custom ASPX which inherits
from GlobalAdminPage and has the "_admin/admin.master" masterpage.
Thanx in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SharePoint Designer 吗?
admin.master 文件位于 12 配置单元中的 12\TEMPLATE\ADMIN\admin.master 下。您可以将其复制到 Visual Studio 项目中的 _admin 文件夹中。但随后您需要使用 12\TEMPLATE\CONTROLTEMPLATES 中找到的文件来解决损坏的 _controltemplates 引用。如果可以的话,您最好只使用 SharePoint Designer,而不是尝试在 Visual Studio 中复制 SharePoint Designer 的功能。
Can you use SharePoint Designer?
The admin.master file is in the 12 hive under 12\TEMPLATE\ADMIN\admin.master. You could copy that into an _admin folder in your Visual Studio project. But then you'll need to resolve the broken _controltemplates references with files found in 12\TEMPLATE\CONTROLTEMPLATES. If it's an option, instead of trying to duplicate SharePoint Designer's functionality in Visual Studio, you'd probably be better off just using SharePoint Designer.