ASP.NET 嵌套数据绑定控件

发布于 2024-08-07 18:23:59 字数 98 浏览 6 评论 0原文

假设我有一个表单视图,其中有一个中继器,然后有一个嵌套在中继器内的数据列表。如果我在表单视图的数据源中有一个更新命令,我是否能够将数据列表中的绑定值与表单视图 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人骨 2024-08-14 18:23:59

您始终可以使用 .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 ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文