HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/circ.itp/order-update-from-woo-trigger.asp
<%Option Explicit%>
<!--#include file="woo-to-itp.asp"-->
<%DisableCache%><!DOCTYPE html>
<html>
<head>
<title>Order Update from WooCommerce Trigger</title>
</head>

<body>
<h3>Order Update from WooCommerce Trigger</h3>
<%

' (SS,4/8/25)
If Not IsWooLiveMode Then
  Response.Write "<p><strong>In ""Test mode"", no data written to CIRC Shopping Admin database</strong></p>" & NL
End If

  ' (SS,24/4/25) following prevents GTM iframe noscript version showing in external scripts (via Finalise)
  'GTMDisable
  
 ' DoWooCommerceOrderToITP
 
 Dim LOrderID
 LOrderID = CleanRequestQueryString("order_id")
 WC_GetOrder LOrderID
 
%>
</body>
</html>