从 Web 部件中的共享点列表创建 Html 表的最佳方法是什么?
我想要创建一个可部署的 .wsp Web 部件,并且想要获取自定义列表并将其显示在该 Web 部件内的 Html 表中。
我知道如何创建 .wsp Web 部件,并且还可以创建覆盖 WebPart 类的 RenderContents
或 CreateChildControls
方法的表。
但我想知道在 WebPart 中输出 Html 表的简单且最佳的方法。
我是否应该使用 UserControl,以便可以在其中添加任何 Asp.Net 控件,然后将其加载到 Web 部件中?
请告诉我有什么解决办法吗?
I want to create a deployable .wsp Web Part and I want to fetch a Custom List and show it in an Html Table inside that web part.
I know how to create a .wsp web part, and I can also create the table overriding the RenderContents
or CreateChildControls
methods of WebPart class.
But I want to know the easy and best method for outputting an Html Table in a WebPart.
Should I use a UserControl so that, I can add any Asp.Net controls inside it and then load it in the Web Part ??
Please tell me any solutions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Puneet 我建议使用数据视图 Web 部件,它使用 xslt 来自定义呈现列表数据的视图。
您可以借助 SharePoint Desginer 来添加数据视图 Web 部件。
http://www.lcbridge.nl/vision/2009/dvwp.htm
Puneet i would recommend using Data View webparts which uses xslt to customize the view in which a list data is rendered.
You can take help of SharePoint Desginer to add a Data View Web Part.
http://www.lcbridge.nl/vision/2009/dvwp.htm
看看这个视频。它演示了如何在 Visual Studio 2008 中构建 Visual Web 部件(使用用户控件作为 UI 的部件),并演示如何将列表中的数据绑定到 GridView 控件。
http://www.vimeo.com/11285888
Check out this video. It shows how to build a Visual Web Part (one that uses a user control for UI) in Visual Studio 2008 and shows how to bind data from a list to a GridView control.
http://www.vimeo.com/11285888