ASP.NET 更新绑定到自定义 DataTable 的 DataGrid 时出现问题

发布于 2024-08-26 15:16:17 字数 185 浏览 5 评论 0 原文

我通过 ObjectDataSource 将自定义 DataTable 绑定到 DataGrid,其中我使用 SelectMethod 和 UpdateMethod。 SelectMethod 工作得很好,但是当我尝试更新行时,它因 MissingMethodException 而中断。我应该怎么做才能解决这个问题?

抱歉我的英语不好;)

I bind custom DataTable to DataGrid through ObjectDataSource, where i use SelectMethod and UpdateMethod. SelectMethod working great, but when I try to update row it's breaking by MissingMethodException. What should i do to fix this problem?

Sorry for my bad english ;)

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

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

发布评论

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

评论(1

很酷又爱笑 2024-09-02 15:16:17

确保您的更新方法具有正确的参数。例如,如果您的网格中有以下字段:

<asp:BoundField DataField="Id" HeaderText="ID:" />
<asp:BoundField DataField="Name" HeaderText="Name :" />

您的更新方法可能如下所示:

public void Update(int Id, string Name) 
{
    //...
}

这是一个 完整示例

Make sure that your update method has the right parameters. For example if in your grid you have the following fields:

<asp:BoundField DataField="Id" HeaderText="ID:" />
<asp:BoundField DataField="Name" HeaderText="Name :" />

your update method could look like this:

public void Update(int Id, string Name) 
{
    //...
}

Here's a full example.

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