%
'Open a connection to the database
Dim objConn, strSQL1,objRSBreed,breedid
Dim strSQL2, objRSPics
Dim strSQL3, objRSLinks
Dim strSQL4, objRSTests
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString=connect()
objConn.Open
strSQL1="SELECT * FROM breed ORDER By b_name"
Set objRSBreed = Server.CreateObject("ADODB.Recordset")
objRSBreed.Open strSQL1, objConn
Session("FirstTime") = "yes"
if Request.QueryString("reset") ="yes" then
'Session.abandon
Session.Contents.RemoveAll()
Session("FirstTime") = "yes"
end if
%>