sniper
11-16-2005, 08:54 AM
I can't see my error. I've been trying to get this page to work for a couple of days but keep getting the object expected error for line 1, character 1. Maybe one of you will be able to see it.
<!-- #include file="BoutiqueIncludes\asp\Boutiques.asp" -->
<%
function RedirectURL(strURL)
request.Form.action = strURL
request.Form.submit()
end function
function ChangeLang(CurrentLang)
if CurrentLang = "EN" then
request.Form("hidLang") = "FR"
else
request.Form("hidLang") = "EN"
end if
RedirectURL("#")
end function
function popUpEbay(strEbaySite)
dim PathForEbay:PathForEbay = strEbaySite + "?hidLang=" + strLang + "&hidLoginGUID=" + strUniqueId + "&hidProgramSource=" + Application("strProgramSource") + "&hidEbayUserID=" + Application("strEbayUserID"+strLang)
response.Redirect(PathForEbay)
end function
%>
Thank you.
<!-- #include file="BoutiqueIncludes\asp\Boutiques.asp" -->
<%
function RedirectURL(strURL)
request.Form.action = strURL
request.Form.submit()
end function
function ChangeLang(CurrentLang)
if CurrentLang = "EN" then
request.Form("hidLang") = "FR"
else
request.Form("hidLang") = "EN"
end if
RedirectURL("#")
end function
function popUpEbay(strEbaySite)
dim PathForEbay:PathForEbay = strEbaySite + "?hidLang=" + strLang + "&hidLoginGUID=" + strUniqueId + "&hidProgramSource=" + Application("strProgramSource") + "&hidEbayUserID=" + Application("strEbayUserID"+strLang)
response.Redirect(PathForEbay)
end function
%>
Thank you.