I spoke to soon It works like a charm on the first page but subsequent pages are not ordered right. Is there another place in the members.asp I need to configure?
ahhh, these snitz guys threw me for a loop with some additional hard coding
here is the rest of the fix.
change these routines:
sub Paging2() if maxpages > 1 then if Request.QueryString("whichpage") = "" then sPageNumber = 1 else sPageNumber = Request.QueryString("whichpage") end if if Request.QueryString("method") = "" then sMethod = "nameasc" else sMethod = Request.QueryString("method") end if
AND
sub Paging() if maxpages > 1 then if Request.QueryString("whichpage") = "" then sPageNumber = 1 else sPageNumber = Request.QueryString("whichpage") end if if Request.QueryString("method") = "" then sMethod = "nameasc" else sMethod = Request.QueryString("method") end if
== these can be found towards the bottom of members.asp