ASP Code not working

Anyone have an idea why this is not loading info into database?

Here is the code:

<%@LANGUAGE=“VBSCRIPT”%>

<!–#include file=“Connections/guestbook.asp” -->

<%
Dim guestform
Dim guestform_numRows

Set guestform = Server.CreateObject(“ADODB.Recordset”)
guestform.ActiveConnection = MM_guestbook_STRING
guestform.Source = “SELECT * FROM Guestbook ORDER BY LastName”
guestform.CursorType = 0
guestform.CursorLocation = 2
guestform.LockType = 1
guestform.Open()

guestform_numRows = 0

strFirst = Request.Form(“fName”)
strLast = Request.Form(“lName”)
strEmail = Request.Form(“email”)
strComments = Request.Form(“comments”)

SQL = “INSERT INTO Guestbook (FirstName, LastName, Email, Comments) VALUES (’”&strFirst&"’,’"&strLast&"’,’"&strEmail&"’,’"&strComments&"’)"
MyPath=Server.MapPath("…/db/gbook.mdb")
Set conn = Server.CreateObject(“ADODB.Connection”)
guestform.Open “Driver={Microsoft Access Driver (*.mdb)};” & _
“DBQ=” & MyPath
Response.Write(SQL)
conn.Execute(SQL)
%>
<%
guestform.Close()
Set guestform = Nothing
%>