%
' Comersus Shopping Cart
' Comersus Open Technologies
' United States
' Software License can be found at License.txt
' http://www.comersus.com
' Details: shows order confirmation
%>
<%
on error resume next
dim mySQL, conntemp, rsTemp
' get settings
pStoreFrontDemoMode = getSettingKey("pStoreFrontDemoMode")
pCurrencySign = getSettingKey("pCurrencySign")
pDecimalSign = getSettingKey("pDecimalSign")
pCompany = getSettingKey("pCompany")
pCompanyLogo = getSettingKey("pCompanyLogo")
pAuctions = getSettingKey("pAuctions")
pListBestSellers = getSettingKey("pListBestSellers")
pNewsLetter = getSettingKey("pNewsLetter")
pPriceList = getSettingKey("pPriceList")
pStoreNews = getSettingKey("pStoreNews")
pOneStepCheckout = getSettingKey("pOneStepCheckout")
pExitSurvey = getSettingKey("pExitSurvey")
pOrderPrefix = getSettingKey("pOrderPrefix")
pIdOrder = getUserInput(request.querystring("idOrder"),10)
if pIdOrder="" then
response.redirect "comersus_message.asp?message="&Server.Urlencode(getMsg(490,"Invalid order"))
end if
%>
<%=getMsg(491,"confirmation")%>
<%=getMsg(492,"thanks")%>
<%=getMsg(493,"payment 4 order #")%><%=pIdOrder%> <%=getMsg(494,"received")%>
<%=getMsg(495,"track")%> <%=getMsg(496,"here")%>
<%if pStoreFrontDemoMode="-1" then%>
<%=getMsg(497,"thanks for testing")%>
<%=getMsg(498,"visit")%> <%=getMsg(499,"admin demo")%>
<%end if%>
<%call closeDb()%>