File: D:/web/coventrydemolition/epdq-return.asp
<!--#include file="inc-main.asp"-->
<%
' following added to implement a return from ePDQ payment
' due to limitations it only returns with page name followed by ?oid
' i.e. /products.asp?oid=10001
' instead of "/products.asp?cmd=checkout&stage=co"
' because Session("OrderNoPlaced") is an integer, had to add "" to convert to string
Finalise ' (SS,27/5/07) closes database, called because finalise will be called by inc-main.asp
If Request("oid") <> "" And Request("oid") = Session("OrderNoPlaced") & "" Then
Response.Redirect GetReturnFromPaymentURL
End If
%>