|
| |
|
|
rdouglass
Posts: 9206 From: Biddeford, ME USA Status: offline
|
RE: Paging rdouglas - 11/15/2002 15:43:11
Maybe something like this for the first page (based on what you started with - querystrings): <% For i = 1 to Request.Form(" position" ).Count if Request.Querystring(" position" )(i)=" 1" then choice1=" yes" if Request.Querystring(" position" )(i)=" 2" then choice2=" yes" if Request.Querystring(" position" )(i)=" 3" then choice3 =" yes" Session(" position" & i) = Request.Querystring(" position" )(i) Next %> And for subsequent pages: <% For i = 1 to Request.Form(" position" ).Count if Session(" position" & i)=" 1" then choice1=" yes" if Session(" position" & i)=" 2" then choice2=" yes" if Session(" position" & i)=" 3" then choice3 =" yes" Next %> At least I think that' s what you' re after....
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|