在 ASP.NET gridview 中显示父/子记录
好吧,我似乎无法弄清楚这个问题..我有 1 个表,其中包含列 id、parentid 这允许一个选项有一个子选项。所以它会是这样的:
id | parentid
1 | null
2 | null
3 | 1
我如何需要它在我的 gridview 中显示是这样的:
id | parentid
1 | null
3 | 1
2 | null
任何想法我都将是最伟大的..以防万一我在选择上搜索并尝试了 Sql COALESCE 但那不起作用任何一个..
Ok I can't seem to figure this one out..I have 1 table which has column id, parentid
this allows an option to have a sub-option. So it would be something like this:
id | parentid
1 | null
2 | null
3 | 1
How I need it to show in my gridview is like this:
id | parentid
1 | null
3 | 1
2 | null
any ideas I would be most greatful..and just in case I have searched and tried Sql COALESCE on the select but that didn't work either..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用 ListView 或 DataList 而不是 GridView。这应该会让您走上正确的道路:
当用户单击 DataList1 中的 LinkButton/Button 时,执行如下操作:
I would use a ListView or DataList instead of a GridView. This should put you on the right path:
And when the user clicks the LinkButton/Button in DataList1, do something like this: