I know this looks a little different but I eliminated all but
the one that
had a session that had a value "Check 1" had a value of
7.95...the others 0
<% 'Check 1
if (cStr(Session("ssflatRateUnder8")) <> "") then
Session("ssTotalShipping") = "" & cStr(
Session("ssflatRateUnder8") ) & ""
end if
%>
It showed up. If the person chooses a flat rate and has under
8 products,
the ssflatRateUnder8 rule applies.
As soon as I add the other 3, below, it sets the value from
"check 4"
<% 'Check 2
if (cStr(Session("ssflatRateOver8")) <> "") then
Session("ssTotalShipping") = "" & cStr(
Session("ssflatRateOver8") ) & ""
end if
%>
<% 'Check 3
if (cStr(Session("WAEC_FlatRate2ndDayAir")) <> "")
then
Session("ssTotalShipping") = "" & cStr(
Session("ss2ndDayUnder") ) & ""
end if
%>
<% 'check 4
if (cStr(Session("ss2ndDayOver")) <> "") then
Session("ssTotalShipping") = "" & cStr(
Session("ss2ndDayOver") ) & ""
end if
%>