ASP.NET - 是否可以将 TreeViewControl 呈现为无序列表而不是表格?
是否可以将 TreeViewControl 呈现为无序列表而不是表格?
Is it possible to render a TreeViewControl as an unordered list instead of a table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你最好使用递归循环。无论如何,TreeViewControl 都不是一个轻量级控件。
you'd be better off using a recursive loop. the TreeViewControl is not a light-weight control by any means.
ASP.NET 现在允许 ControlAdapter,您可以编写并完全更改控件在页面上的显示方式。您可以尝试为 TreeViewControl 编写自己的适配器。
ASP.NET now allows ControlAdapters, that you can write and completely change the way control appear on the page. You can try writing your own adapter for TreeViewControl.