嵌套列表视图绑定问题c#
我在另一个列表视图(如 lv1-->lv2)中有列表视图,现在问题是在嵌套列表视图中插入记录,请参阅错误...
数据源“SqlDataSource2”不支持插入,除非指定了 InsertCommand。
当我将 datasource2 保留在 LV1 选择的模板中但 datasource2 未绑定 lv2 时另一个问题..如何绑定 lv2...?
i have list view inside another list view like lv1-->lv2 now problem is inserting record in nested list view see error...
Inserting is not supported by data source 'SqlDataSource2' unless InsertCommand is specified.
another problem when i keep datasource2 in LV1 selected template but datasource2 is not binding lv2.. how can bind lv2...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在第一个列表视图行数据绑定事件中绑定第二个列表视图,例如:
在第一个列表视图数据绑定事件中,首先您需要找到第二个列表视图控件,然后绑定第二个列表视图
希望这有所帮助。
you need to bind second listview in first listview row databound event like:
In first listview databound event, first you need to finding the second listview control and then bind the second listview
hope this help.