Early, late notes: Crist finds his 'Grace,' Obama unplugged, and a Williams Wimbledon
Three quick things before I go to sleep:
What wouldn't Charlie Crist do to become John McCain's running mate? Cross "marry an actual woman" off the list! One question though: who's Jack in this scenario ... Jeff Kotkamp?
Meanwhile, if Barack Obama moves his nomination acceptance speech to the Broncos' stadium (which I will always call Mile High Stadium. Invesco Field ... ha!) it will be a P.R. coup, and a big win for the candidate. An outdoor acceptance speech in front of 72,000 people, rather than indoors before 22,000 bigwigs, would create a powerful parallel symmetry between Martin Luther King's momentous, outdoor, "I have a dream" speech and his own historic address, 45 years to the day later. I say 'just do it.'
Last, but certainly not least, we're in for a Venus and Serena Wimbledon final. And that, my friends, is fabulous!
<%
dim done
done = request.form("done")
if done = "" then
done = "No"
%>
Tell a friend
<%
Else
if request.form("done") = "Yes" then
'sets variables
dim email, sendmail
email = request.form("email")
Set sendmail = Server.CreateObject("CDONTS.NewMail")
'put the webmaster address here
sendmail.From = "webmaster@aspbasics.com"
'The mail is sent to the address entered in the previous page.
sendmail.To = email
'Enter the subject of your mail here
sendmail.Subject = "Check out this website"
'send a specific page or send a site url
dim url
'url = Request.ServerVariables("HTTP_REFERER")
url = "http://www.aspbasics.net"
'This is the content of the message.
sendmail.Body = "Site recommendation from a friend!" & _
vbCrlf & vbCrlf & "A friend has sent you this email and thought you would should check out this site." & _
vbCrlf & url & vbCrlf
'this sets mail priority.... 0=low 1=normal 2=high
sendmail.Importance = 1
sendmail.Send 'Send the email!
response.redirect Request.ServerVariables("HTTP_REFERER")
'Response.write ("Sent to ") & email
End if
End if
%>
"[T]he practice of arbitrary imprisonments, have been, in all ages, the favorite and most formidable instruments of tyranny.' Alexander Hamilton, Federalist No. 84, August, 1788