File: D:/web/hyperflight/! bs3/stock-snapshot.asp
<%Option Explicit%>
<!--#include file="dbfunctions.asp"-->
<!--#include file="apputils.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<%DisableCache ' 18/02/10 %>
<title>Stock Snapshot <%=Now%></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div>
<%
' (SS,30/5/12) to add to stock_snaphots table the current stock level for each product
StockSnapshot
' (SS,18/02/10) added Now to show current date/time to help determine that it's not getting a cached page
%>
<br><br><table><tr><td><%=Now%></td></tr></table>
</div>
</body>
</html>
<%Finalise%>