Delphi Prism 2011 和 Sharepoint
我可以在 Delphi Prism 中为 Sharepoint 2007 创建 webpart 控件吗?如果是,怎么办? 谢谢。
can i create webparts controls for Sharepoint 2007 in Delphi Prism? If yes, how?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sharepoint 使用普通的旧式 ASP.NET WebPart。即使从 Microsoft.SharePoint.WebPartPages.WebPart 类继承的 WebPart 最终也会从 ASP.NET 的 WebPart 继承。为 Sharepoint 创建 Web 部件应该没有问题。不过,查找示例和教程将是一个问题,因为 90% 的 Sharepoint 开发、示例和工具都是用 C# 编写的。
Sharepoint uses plain old ASP.NET WebParts. Even webparts that inherit from the Microsoft.SharePoint.WebPartPages.WebPart class ultimately inherit from ASP.NET's WebPart. You should have no problem creating a webpart for Sharepoint. Finding samples and tutorials is going to be a problem though, as 90% of Sharepoint development, samples and tools are in C#.