%@ LANGUAGE = "VBScript" %>
<% Option Explicit %>
Software Database: advanced search
<%
'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"
'Print search form by calling subroutine
PrintAdvancedSearchForm
'Close ODBC connection
conn.close
'Release memory used by connection
set conn = nothing
%>