至少一个参数没有被指定值
朋友这是我修改密码的一个代码If MsgBox("确定要更改密码吗?", 33, "警告") = 1 Then
txtsql = "select * from 用户信息表 where 密码='" & Text3.Text & "' and username='" & Text1.Text & "'"
rs.Open txtsql, conn, 3, 2
rs!密码 = Text3.Text
rs.Update
rs.Close
conn.Close
End If
出现了“至少一个参数没有被指定值”,请问这个该怎么解决的