Is it possible to set a session variable and then to change it later if it equals a certain value?
<cfif session.checkout.vehicle.vehiclebody eq "TK1" or "TK2" or "TK3" or "TK4" or "TK5"> <cfparam name="#session.checkout.vehicle.vehiclebody#" default="TK"> </cfif> What I am trying to do is if the session variable equals TK1,TK2,TK3,TK4, or TK5 then to reassign the session variable to equal just TK
So that then #session.checkout.vehicle.vehiclebody# is eq to "TK"
Any help with this would be greatly appreciated!