Hi
I'm passing it along as something like
response.write <a href="webpage1.asp?Page= & page">
resulting in
http://webpage1.asp?Page = 1 where page is the first page. Page is a variable passed on a querystring.
When I click on originating page which brings up the record set, the url is
http://webpage.asp?ID=12345 (numbers are unique id numbers as this is a site where you login) and first record is displayed but with a next news link above it but when I click on next news link it displays the same record but URL changes to
http://webpage1.asp?Page =1
What I want is the link to display next record but also to have the unique ID so it would be something like
http://webpage1.asp?ID =12345 Page 1
Is this possible?
Lindsey