Hi,
I have an application process where users enter info into fields, go on
to step 2, when this happens the user info is loaded into the session
and then the user is redirected
Function SaveCookies()
Session("apptype") = Request.Form("apptype")
Session("pgmtype") = Request.Form("pgm_type")
Session("branch") = Request.Form("branch")
Session("guarantors") = Request.Form("gtors_count")
Session("references") = Request.Form("refs_count")
Session("biztype") = Request.Form("biztype")
Session("ref") = Request.Form("external_ref")
Session("customerCode") = Request.Form("customer_code")
Session("companyName") =
ReplaceSpecialCharacters(UCASE(Request.Form("company_name")))
Session("dbaName") =
ReplaceSpecialCharacters(UCASE(Request.Form("dba_name")))
Session("address1") =
ReplaceSpecialCharacters(UCASE(Request.Form("address1")))
Session("address2") =
ReplaceSpecialCharacters(UCASE(Request.Form("address2")))
Session("city") =
ReplaceSpecialCharacters(UCASE(Request.Form("city")))
Session("state") = UCASE(Request.Form("state"))
Session("zipcode") = Request.Form("zipcode")
Session("county") = Request.Form("county")
Session("ctname") = Request.Form("contact_tname")
Session("cfname") =
ReplaceSpecialCharacters(Request.Form("contact_fname"))
Session("clname") = Request.Form("contact_lname")
Session("ctitle") = Request.Form("contact_title")
Session("cphone") = Request.Form("contact_phone")
Session("cext") = Request.Form("contact_ext")
Session("cfax") = Request.Form("contact_fax")
Session("cemail") =
ReplaceSpecialCharacters(LCase(Request.Form("contact_email")))
Session("fedid") = Request.Form("federal_id")
Session("yrsinbiz") = Request.Form("yrs_in_biz")
End Function
Say I need to change one of the fields entered in step 1, I hit
Previous button, change the info, continue on, but when I go back to
see if my change persisted, I find that the field changed back to its
original value. This doesn't happen in IE, I am wondering how Firefox
caches here?!