ASP.NET 更新绑定到自定义 DataTable 的 DataGrid 时出现问题
我通过 ObjectDataSource 将自定义 DataTable 绑定到 DataGrid,其中我使用 SelectMethod 和 UpdateMethod。 SelectMethod 工作得很好,但是当我尝试更新行时,它因 MissingMethodException 而中断。我应该怎么做才能解决这个问题?
抱歉我的英语不好;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您的更新方法具有正确的参数。例如,如果您的网格中有以下字段:
您的更新方法可能如下所示:
这是一个 完整示例。
Make sure that your update method has the right parameters. For example if in your grid you have the following fields:
your update method could look like this:
Here's a full example.