Each time I load an image, if it goes beyond the first page, the thumbnail
side of the gallery reloads and goes back to the first page thumbnail
listing.

I'm not entirely sure what I should be passing from one page to the next in
my link in this case. If I include the NextX it loads the image no problem
but all the thumbnails go away, if you use PrevX instead, it goes back to
the first gallery.

Any ideas?

Will post the code below.

<!---Assign default value for "start"--->
<cfparam name="start" default="1">
<CFSET display="6">

<!---Calculate the "next" value--->
<cfset nextX = #start# + #display#>

<!---Calculate the "previous" value--->
<cfset PrevX = #start# - #display#>
  <cfif PrevX LTE 0>
    <cfset PrevX = 1>
  </cfif>


      <cfoutput query="getThumbs" startrow="#start#" maxrows="#display#">
        <a
href="gallery_view.cfm?gallery_ID=#gallery_ID#&gallery_NickName=#gallery_Nic
kName#&Image=#Image#&Image_Ext=#Image_Ext#">#ID#<!--- <img
src="gallery/#gallery_NickName#/thumb/#Image#_thumb#Image_Ext#" width="66"
height="74" alt="#Caption#" border="0">---></a><br>
      </cfoutput>

      <!---Previous (X) (only show this link if there are "previous"
results)--->
      <cfif #start# is not 1>
        <cfoutput>
        <CFPARAM NAME="gallery_NickName" DEFAULT="">
        <CFPARAM NAME="Image_Ext" DEFAULT="">
        <CFPARAM NAME="Image" DEFAULT="blank.gif">

          <a
href="gallery_view.cfm?gallery_ID=#gallery_ID#&start=#PrevX#&display=#displa
y#&Image=#Image#">
            <img src="images/nav_reverse.gif" width="17" height="21"
alt="Previous Group" border="0">
          </a>
        </cfoutput>
      </cfif>
--
      <!---Next (X) (only show this link if there are more results
available)--->
      <cfif nextX LTE getThumbs.RecordCount>
        <cfoutput>
          <a
href="gallery_view.cfm?gallery_ID=#gallery_ID#&start=#nextX#&display=#displa
y#&Image=#Image#">
            <img src="images/nav_forward.gif" width="17" height="21"
alt="Next Group" border="0">
          </a>
        </cfoutput>
      </cfif>

--------------------------------------
Mark Smeets / stranger0 / ICQ: 1062196
[EMAIL PROTECTED]
http://www.prowerks.com/stranger

"Life is a series of small victories" - Gene Simmons


Reply via email to