I am trying to update a record in an access database with the following code but I keep getting and error?
'--------
sql = "SELECT * FROM [Clients] WHERE [Clients].[ClientID]=" &Trim(session("myvar111"))
rs.open sql, conn, 3, 3
'--
strPassword=Trim(Request.Form("password"))
'--
rs.Edit
rs("Password")=strPassword
rs.Update
rs.Close
'-------
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Edit'
/cs/login/ma/processing.asp, line 109
'--------
sql = "SELECT * FROM [Clients] WHERE [Clients].[ClientID]=" &Trim(session("myvar111"))
rs.open sql, conn, 3, 3
'--
strPassword=Trim(Request.Form("password"))
'--
rs.Edit
rs("Password")=strPassword
rs.Update
rs.Close
'-------
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Edit'
/cs/login/ma/processing.asp, line 109