Books may be purchased through the Anchorage Museum Shop or Princeton Architectural Press.
")
Str=Replace(Str, CHR(10), "
")
FormatStr = Str
End Function
'Dimension variables
Dim adoCon 'Holds the Database Connection Object
Dim rsGallery 'Holds the recordset for the records in the database
Dim strSQL 'Holds the SQL query to query the database
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("../data/quonset2005.mdb")
Set rsGallery = Server.CreateObject("ADODB.Recordset")
xID = Request.QueryString("id")
If xID <> "" then
%>
<%=rsGallery("Title")%>
<%
if rsGallery("Location") <> "" Then Response.Write (rsGallery("Location") & "
") end if
xDesc = FormatStr(rsGallery("Description"))
if xDesc <> "" Then Response.Write (xDesc & "
") end if
if rsGallery("Credit") <> "" Then Response.Write ("" & rsGallery("Credit") & "
") end if
end if
Else
%>