Which city's team was affiliated with the Saint Louis Cardinals, then the Kansas City Athletics, then Los Angeles Dodgers, and then the Florida Marlins?
Which city's team has been affiliated with the Philadelphia Athletics, the Detroit Tigers, the Brooklyn Dodgers, the Chicago Cubs, the Kansas City Athletics, the Saint Louis Cardinals, the Cleveland Indians, the Milwaukee Brewers; the Minnesota Twins, the Pittsburgh Pirates, the Philadelphia Phillies and the San Diego Padres?
<%
' Get the current date
currentDate = date()
' Convert the expiration date
expdate = CDate(#7/11/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(192)
set rs = conn.execute(sql)
counter = cint(rs("Count"))
counter = counter + 1
sql = "UPDATE counter set Count ='"& counter &"' WHERE counterID = 192"
set rs = conn.execute(sql)
Set rs = Nothing
conn.close
set conn = nothing
%>