FS
Starting Member
1 Posts |
Posted - 25 May 2001 : 12:03:32
|
I'm having trouble with direct references, comparisons, etc to the database's variables (I dont know if this is the terminology but I hope you'll understand).
This is my problem. Things like: objRs.AbsolutePage = Request.QueryString("page") Will not work. Even if I put objRs.AbsolutePage = 1 or objRs.AbsolutePage = 5 it allways returns -1
I can fix it like this: CurrPage = Request.QueryString("page") objRs.AbsolutePage = CurrPage
But its a lot of work imprement asp code to my site as I have to change everything.
I guess its probably something on my provider's side, but I was wondering if you could help me as I dont have a clue about what could be wrong.
Thanks in advance
|
|