ASP.NET 嵌套数据绑定控件
假设我有一个表单视图,其中有一个中继器,然后有一个嵌套在中继器内的数据列表。如果我在表单视图的数据源中有一个更新命令,我是否能够将数据列表中的绑定值与表单视图 DS 中的参数相关联?
Say I have a Form View with a Repeater inside of it, and then a Data List nested inside of the Repeater. If I had an Update Command in the DataSource for the Form View would I be able to associate bound values within the Data List to parameters in the Form Views' DS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以使用 .NamingContainer 向上到达包含所需数据的容器,并通过 .DataItem 进行访问。
周围的东西:
((ContainerType)Container.NamingContainer.NamingContainer).DataItem ...
You can always go up using .NamingContainer up to the container that has the data you want, and access through .DataItem.
Something around the lines:
((ContainerType)Container.NamingContainer.NamingContainer).DataItem ...