带有 objectdatasource 的 Formview 生成无效的更新参数
我有一个表单视图,其中包含编辑中的各个字段和一个对象数据源,我在其中定义了更新方法采用的更新参数。我已将编辑模板中的某些字段设置为只读,因为我希望它们显示。
不幸的是,它们以某种方式作为更新参数传递到我的对象数据源。 因此,它生成的更新参数导致我的方法不匹配。
如何排除这些参数被发送更新?
I've a form view with various field in edit and an object datasource where I've defined my update parameters that my update method takes. I've set some of the fields in the edit template to read only because I want them to display.
Unfortunately they are getting passed in as update parameters somehow to my objectdatasource.
So, it is generating update parameters that causes my method to not match.
How can I exclude these parameters from getting sent to update?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了它。
将 Bind(field) 语法更改为 Eval(field)
如有其他输入,请随意。如果好的话我会给你信用。
I got it.
Change the Bind(field) syntax to Eval(field)
Anyone have other input feel free. If good I'll give you credit.