<% '************************************************************************* ' ASP Scripting: ' Filename: handler_select_country_text.asp ' Written by: Wilbert Madarang ' Date: January 2, 2003 '************************************************************************* ' Description: This function selects the country desired. '************************************************************************* ' Revision History: ' November 08, 2003 ' - modified so that this functionality only impacts MyCurrency '************************************************************************* %> <% strCountry = Request("country") 'If strCountry = "us" or strCountry = "canada" Then ' Session("MyCountry") = strCountry ' Response.Redirect Request.ServerVariables("HTTP_REFERER") 'Else ' Session("MyCountry") = DEFAULT_COUNTRY ' Response.Redirect Request.ServerVariables("HTTP_REFERER") 'End If 'This will only impact MyCurrency If strCountry = "us" or strCountry = "canada" Then Session("MyCurrency") = strCountry Response.Redirect Request.ServerVariables("HTTP_REFERER") Else Session("MyCurrency") = DEFAULT_COUNTRY Response.Redirect Request.ServerVariables("HTTP_REFERER") End If %>