Which New York Met, in 1993, threw a lit firecracker into a crowd of baseball fans waiting for autographs in the Dodger Stadium parking lot, injuring three children, including a two-year-old girl?
<%
' Get the current date
currentDate = date()
' Convert the expiration date
expdate = CDate(#4/18/2009#)
' Compare dates
comparison = DateDiff("d",expdate,currentDate)
' If date is in the past display the link
if comparison > 0 then
%>
<% End if %>
<%
' Set the connection string and open the connection
set conn = server.Createobject("ADODB.Connection")
conn.Open ("DSN=counter")
sql = "SELECT * from counter WHERE counterID = " & cint(108)
set rs = conn.execute(sql)
counter = cint(rs("Count"))
counter = counter + 1
sql = "UPDATE counter set Count ='"& counter &"' WHERE counterID = 108"
set rs = conn.execute(sql)
Set rs = Nothing
conn.close
set conn = nothing
%>