适配器.更新

发布于 2024-07-16 19:02:10 字数 466 浏览 10 评论 0原文

我使adapter.insert和adapter.delete都工作得很好,但不能与adapter.delete一起使用,即使我只在此处放置代码

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2。点击 usersAdp.Fill(用户稳定) usersAdp.Update(txtid.Text, Me.txtname.Text, Me.txtemail.Text, Me.txtpassword.Text, Me.txtconfirm.Text, Me.txtcode.Text, Me.CheckBox1.Checked = True) Me.GridView1.DataSource = 用户表 Me.GridView1.DataBind() 结束子

i make the adapter.insert and the adapter.delete and both work good but not with the adapter.delete even i put only on argument here the code

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
usersAdp.Fill(userstable)
usersAdp.Update(txtid.Text, Me.txtname.Text, Me.txtemail.Text, Me.txtpassword.Text, Me.txtconfirm.Text, Me.txtcode.Text, Me.CheckBox1.Checked = True)
Me.GridView1.DataSource = userstable
Me.GridView1.DataBind()
End Sub

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

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

发布评论

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

评论(1

我是有多爱你 2024-07-23 19:02:10

该适配器的数据源是什么 - 如果它是 SQL 表,它是否定义了主键?

当您键入 usersAdp.Update 方法时,智能感知应该为您提供具有各种参数数量和合法组合参数类型的选项。 确保向其传递合法选项之一的数字和参数类型。

What is the datasource for this adapter - if its an SQL table, has it got a primary key defined?

When you type the usersAdp.Update method, the intellisense should give you the options with various numbers of parameters and types of parameters that are legal combinations. Make sure you pass it the number and parameter types that are one of the legal options.

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