%@ LANGUAGE = "VBScript" %>
<% Option Explicit %>
Software Database: current status
<%
'Start ASP scripting
'Declare the one and only global variable, the DB connection
DIM conn
'Open ODBC connection with Catalogue
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "swdb"
'Run subroutine
SoftwareDBInfo
'Close ODBC connection
conn.close
'Release memory used by connection
set conn = nothing
%>