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/castironradiatorcentre/changes prev/bak 2019-12-05/delivery.asp
<%Option Explicit%>
<!--#include file="dbfunctions.asp"-->
<!--#include file="apputils.asp"-->
<html>
<head>
<title>Delivery Details</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<%
Dim AType
AType = Request("type")
If AType = "P" or AType = "" Then
  ' AType, AValueHeading, AIncVat, AZeroAsFree
  ShowDeliveryMatrix "P", "", False, True
End If
If AType = "W" or AType = "" Then
  ' AType, AValueHeading, AIncVat, AZeroAsFree
  ShowDeliveryMatrix "W", "No. of Radiators", False, True
End If
%>
</body>
</html>