File: D:/web/common/asp/asp-info.asp
<%Option Explicit%>
<!--#include virtual="dbfunctions.asp"-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ASP Info</title>
</head>
<body>
<%
' (SS,28/2/24) added this asp-info.asp just for checking certain parameters
' shows dev mode currently, only dbfunctions.asp is included at this moment
' moved to the common/asp folder, include has to be virtual to find dbfunctions.asp in root
%>
<h1>ASP Info</h2>
<p>
Dev Mode: <%=IsDevMode%>
</p>
</body>
</html>