%@ language=VBScript%> <% 'This stores information from the shipping fields, etc. from combo3 or combo5 into session variables so when we 'return to those pages, that info will be restored. If request.QueryString("ChangesMade")="yes" then FullName=request.QueryString("FullName") Session("FullName")=FullName Address1=request.QueryString("Address1") Session("Address1")=Address1 Address2=request.QueryString("Address2") Session("Address2")=Address2 Address3=request.QueryString("Address3") Session("Address3")=Address3 CityState=request.QueryString("CityState") Session("CityState")=CityState Zip=request.QueryString("Zip") Session("Zip")=Zip Phone=request.QueryString("Phone") Session("Phone")=Phone ShipPref=request.QueryString("ShipPref") Session("ShipPref")=ShipPref Choice1=request.QueryString("Choice1") if Choice1<>"" then Session("Choice1")=Choice1 end if Choice2=request.QueryString("Choice2") if Choice2<>"" then Session("Choice2")=Choice2 end if Choice3=request.QueryString("Choice3") if Choice3<>"" then Session("Choice3")=Choice3 end if Choice4=request.QueryString("Choice4") if Choice4<>"" then Session("Choice4")=Choice4 end if Choice5=request.QueryString("Choice5") if Choice5<>"" then Session("Choice5")=Choice5 end if Quantity=request.QueryString("Quantity") Session("Quantity")=Quantity Sender=request.QueryString("Sender") 'Mark Session("Sender")=Sender Feedback=request.QueryString("Feedback") 'Mark Session("Feedback")=Feedback Session("PersistanceOn")="yes" end if Session("Move")="" %>
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||