I have a situation where I don't wish to totally redesign a website Some comments refer to one domain name and others to another domain name. Eg New Zealand and Australia.
<% if session("CurrencyCode") = "NZD" then %>
New Zealand
<% else %>
Australia
<% end if %>
I wish to store this statement in a field associated with comments. To have this effect
NZ Domain name
"The gift basket from New Zealand...."
Aus Domain Name
"The gift basket from Australia...."
It will only be used for several items
Thansks for your comments and time
Todd
<% if session("CurrencyCode") = "NZD" then %>
New Zealand
<% else %>
Australia
<% end if %>
I wish to store this statement in a field associated with comments. To have this effect
NZ Domain name
"The gift basket from New Zealand...."
Aus Domain Name
"The gift basket from Australia...."
It will only be used for several items
Thansks for your comments and time
Todd