为什么数据绑定不记得旧值?

发布于 2024-09-25 18:15:30 字数 199 浏览 0 评论 0原文

我的页面中有一个经典的 ObjectDataSource 和一个 ListView。列表视图仅显示一些数据,当切换到编辑模板时,它允许用户更改值。我希望用户只编辑一些值——所以我在编辑模板中只绑定这些值。

问题是其他值突然变成空值或 0。我尝试一次绑定所有值并且它工作正常,但我无法理解为什么旧/原始值会消失。有什么办法可以绑定旧值吗?

感谢您的帮助。

I have a classic ObjectDataSource and a ListView in my page. The List view just displays some data and when switched to edit template it allows the user to change the values. I want the user to edit just some values -- so I bind just these ones in the edit template.

The problem is that the other values suddenly turn to nulls or 0. I tried to bind all of the values at once and it works fine, but I cannot understand why the old/original values just disappear. Is there any way how to bind the old values?

Thanks for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

匿名的好友 2024-10-02 18:15:30

问题是,只有包含在服务器往返中的数据才能在回发中使用。这包括绑定到 BoundFields、TemplateFields 的所有内容,或者 Propertyname 是否包含在 DataKey(或 DataKeyNames,现在不知道)中。

解决此问题并将开销降至最低的最佳方法是将主键添加到 DataKeyNames 集合中。这允许您访问包含唯一标识符和刚刚更改的所有属性的自定义对象。

在 ODS 的更新方法(在您的自定义类中)中,您现在需要通过其唯一标识符检索旧对象,手动分配新值并将对象保存回数据库

The problem is, that only the data that is included into a round-trip to the server will be available in the postback. That includes all that that is bound to BoundFields, TemplateFields or if the Propertyname is included in the DataKey (or DataKeyNames, don't know right now).

The best approach to fix this, and to keep the overhead to a minimum is to add your primary key to the DataKeyNames collection. This allows you to have access to your custom object that contains an unique identifier and all properties that have just changes.

In your Update Method of the ODS (in your custom class) you now need to retrieve the old object by its unique identifier, manually assign the new values and saves your object back to the database

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