%
' If date is in the future redirect to default
if DateDiff("d",CDate(#10/17/2009#),date()) < 0 then
response.redirect("default.asp")
end if
%>
Baseball Brothers
Daily Baseball Quiz
Saturday, October 17, 2009
Today's theme is: Baseball Brothers
Who were the first pair of brothers to each throw a no hitter?
Bob Forsch and Ken Forsch
Pedro Martínez and Ramón Martínez
Joe Niekro and Phil Niekro
Carlos Pérez and Melido Pérez
Gaylord Perry and Jim Perry
Which pair of brothers has won the most games?
Daffy Dean and Dizzy Dean
Greg Maddux and Mike Maddux
Pedro Martínez and Ramón Martínez
Joe Niekro and Phil Niekro
Gaylord Perry and Jim Perry
Which trio of brothers collected more hits than any other trio of brothers?
Felipe Alou, Jesús Alou, and Matty Alou
Clete Boyer, Cloyd Boyer, and Ken Boyer
Dom DiMaggio, Joe DiMaggio, and Vince DiMaggio
Ed Delahanty, Frank Delahanty, and Jim Delahanty
Joe Sewell, Luke Sewell, and Tommy Sewell
Who were the first brothers to be battery mates in an All-Star game?
Roberto Alomar and Sandy Alomar, Jr.
George Brett and Ken Brett
Mort Cooper and Walker Cooper
Joe Sewell and Luke Sewell
Dixie Walker and Harry Walker
On which team, in 1963, were the three Alou brothers teammates?
Chicago Cubs
Cincinnati Reds
Milwaukee Braves
Pittsburgh Pirates
San Francisco Giants
Which team did all three Alou brothers bat against in the eighth inning of a game in 1963?
Los Angeles Dodgers
New York Mets
Philadelphia Phillies
Pittsburgh Pirates
Saint Louis Cardinals
In what year did Matty Alou and Felipe Alou finished one-two in the National League batting championship?
1963
1966
1969
1970
1971
Who were the first pair of brothers inducted into the Hall of Fame?
Daffy Dean and Dizzy Dean
Fred Robinson and Wilbert Robinson
Joe Sewell and Luke Sewell
Lloyd Waner and Paul Waner
George Wright and Harry Wright
Who were the first brothers to be teammates in an All-Star game?
Mort Cooper and Walker Cooper
Dom DiMaggio and Joe DiMaggio
Joe DiMaggio and Vince DiMaggio
Joe Sewell and Luke Sewell
Dixie Walker and Harry Walker
<%
' Get the current date
currentDate = date()
' Convert the expiration date
expdate = CDate(#10/17/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(290)
set rs = conn.execute(sql)
counter = cint(rs("Count"))
counter = counter + 1
sql = "UPDATE counter set Count ='"& counter &"' WHERE counterID = 290"
set rs = conn.execute(sql)
Set rs = Nothing
conn.close
set conn = nothing
%>
© 2009 John Michael Pierobon