Hi Wolffy,
Ok...working on not doing the multiple edit recordset....just doing a one record at a time but I still can't seem to figure out how to get it to lock.
I still have 2 pages, an edit page and an update page.
edit page looks like:
Code:
Set rs = Server.CreateObject ("ADODB.Recordset")
'build SQL
sSql = "SELECT * FROM dbo.tblTEST"
sSql = sSql & " WHERE TestID='" & sTestID & "'"
rs.Open sSql, conn,3,3
If rs.EOF then
my update:
Code:
Set rs = Server.CreateObject("ADODB.Recordset")
sSql = "Update tblTEST set RegID = " & strRegID & ", Field1 = " & strField1 & ", Field2 = " & strField2 & ", ChangedDate = (getdate())"
sSql = sSql & " Where ItemID = " & strItemID & " "
rs.open sSql, Conn, 3, 3
Maybe you've already stated in above posts but can we start over since this is just one record instead of multiple. Thanks! 
oh another question....does it matter that I don't have this restricted...like I'm not having users login? at least for right now. 
just more info...have a search screen that returns recordset like in link here...and edit link like so:
What mine looks like
Bookmarks