Want To Be Added To Our Delivery Reminder List?
Fill in your information
below and we will send
you emails when a new
weekly menu is posted
*Click Here To View
Chef Suzanne's Blog
|
<%
'get delivery week in here:
Set objConn1 = Server.CreateObject("ADODB.Connection")
Set objRS1 = Server.CreateObject("ADODB.Recordset")
'Make the actual connection
'MS Access testing
MdbFilePath = Server.MapPath ("access_db/Delivery.mdb")
objConn1.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & MdbFilePath & ";"
objConn1.CommandTimeout = 0
strSQL1 = "Select DeliveryTitle,IDNUM from DeliveryDate where IDNUM = 1 "
Set objRS1 = objConn1.Execute(strSQL1)
DO while not objRS1.EOF
strShowDate = objRS1("DeliveryTitle")
objRS1.MoveNext
Loop
objConn1.close
Set objConn1 = Nothing
%>
Delivery Menu - For The Week of <%=strShowDate%>
ALL ORDERS MUST BE IN ON THE FRIDAY BEFORE BY 5PM!!!!!!!
-Please order a minimum of $140.
-All orders will be delivered on Tuesday of the coming week.
-Don't forget to scroll down to see the breakfast, dessert, side, and snack items being offered!
-Do you have a neighbor or friend that would
like to try this service with you? Order together, have the meals delivered to
the same place and receive 10% off both your orders!
-Remember to complete the delivery information at the end of the order form.
|
|