<%@ LANGUAGE=VBScript %> <% Option Explicit Dim txtGalleryPg Dim txtPageNum 'Default Gallery Page is Set in Global.asa 'If Gallery Selector has VIEWed If Request.ServerVariables("CONTENT_LENGTH")<> 0 then Session("GalleryPg") = Request.Form("cboGallery") end if txtPageNum = Session("GalleryPg") ' Build Gallery Page name and redirect txtGalleryPg = "gallery" & txtPageNum & ".html" Response.Redirect(txtGalleryPg) %>