M
Matt Shudy
Hey,
Here is my sql statement
Dim strSQL
strSQL="UPDATE Password SET Password='" & Request.Form
("Password") & "' WHERE Username='" & Request.Form
("Username") & "'
Dim objRS
Set objRS=Server.Create("ADODB.Recordset")
objRS.Update strSQL, objConn
the request.form usernmae is a hidden field on the
previous page.
This is the error I get when I try to run this
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)
Multiple-step OLE DB operation generated errors. Check
OLE DB status value, if available. No work was done.
What am I doing wrong?
Thanks,
Matt Shudy
Here is my sql statement
Dim strSQL
strSQL="UPDATE Password SET Password='" & Request.Form
("Password") & "' WHERE Username='" & Request.Form
("Username") & "'
Dim objRS
Set objRS=Server.Create("ADODB.Recordset")
objRS.Update strSQL, objConn
the request.form usernmae is a hidden field on the
previous page.
This is the error I get when I try to run this
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)
Multiple-step OLE DB operation generated errors. Check
OLE DB status value, if available. No work was done.
What am I doing wrong?
Thanks,
Matt Shudy