ASP.NET - FormView - 数据源仅更新某些字段
我有一个 ASP.NET 页面,其中包含 formview 和 ObjectDataSource。在页面上,我只有 4 个字段绑定到我的数据源中的字段。我的数据源包含 10 个字段。当我调用更新时,它会将我未绑定的 6 个字段设置为 null。我发现它解决这个问题的唯一方法是为 6 个未绑定字段添加隐藏字段并将它们绑定到数据源。
有没有办法不使用隐藏字段来解决这个问题?我认为它应该只更新您绑定的字段并忽略其他字段。
有什么建议吗?
谢谢。
I have a ASP.NET page that contains a formview and ObjectDataSource. On the page I only have 4 fields that are bound to fields in my datasource. My datasource contains 10 fields. When I call an update it is setting the 6 fields I am not binding to to null. The only way I can find it get around this is to add hidden fields for the 6 unbound fields and bind them to the datasource.
Is there anyway around this without using hidden fields? I would think that it should only update the fields you are binding to and ignore the others.
Any suggestions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是手动更改表单视图数据源上的更新代码。
只需删除您不想更新的字段即可。它是一个简单的 SQL 命令。
The solution is to just change by hand the Update Code on the datasource of your formview.
Just remove the fields that you do not won to update. Its a simple SQL command.