I do a find like this:
tempVar1 = "P" & j
recSet2.Find "PackID Like '" & recSet(tempVar1) & "'"
Before this, my recordset is full of data, I know this because for now I have some test code that prints it all to screen. After I do the find, all my recordset has is the field names. This is how I am creating the recordset:
set recSet2 = Server.CreateObject("ADODB.Recordset"
recSet2.open tempStr, strC, adOpenStatic
This works from my XP test box, but not our 2000 IIS Server. Any ideas why this happens?
tempVar1 = "P" & j
recSet2.Find "PackID Like '" & recSet(tempVar1) & "'"
Before this, my recordset is full of data, I know this because for now I have some test code that prints it all to screen. After I do the find, all my recordset has is the field names. This is how I am creating the recordset:
set recSet2 = Server.CreateObject("ADODB.Recordset"

recSet2.open tempStr, strC, adOpenStatic
This works from my XP test box, but not our 2000 IIS Server. Any ideas why this happens?