Ok, I have a page which I ran on my server at home fine, everything worked. Thus when I uploaded it to my host it did not work quite as well.
I have a Recordset which I open in the following way:
rs.Open strSQL, conn, 1, 2
Then I want to put the total number of records (for paging) into a variable with
totalRecs = rs.RecordCount
Then problem now is that on my server at home it takes the correct value and let's me page but on my live server it always takes the value -1. Does anyone know why that would be or what I would have my host to have updated??
Thanks