I recently copied over a heavily modified CS2002 site based on retail.
Pages, data, everything was moved to another server.
Upon accessing product.asp, almost all the fields in the recordset are
not matching the associated values. For example, "description" is
holding "image_filename", and "catalogpagenumber" is holding
"description"!
I proved this theory by using the following sample code. I have no idea
how this is happening, or how to fix it. Any thoughts?
on error resume next
for i = 0 to rsproperties.fields.count - 1
if UCase(rsProperties.Fields(i).name) <> "TIMESTAMP" Then
response.Write rsProperties.Fields(i).name & " = " &
rsProperties.Fields(i).value & "" & "<br />"
if err.number > 0 then response.Write err.Description & "<br />"
err.Clear
End if
next
response.end