%@ LANGUAGE=VBScript %>
<%
'IF Session("LoginPostCode") = "TAKEAWAY" then
' if Session("MENU") = "FALSE" THEN
' response.redirect "TakeAway.asp"
' end if
'END IF
response.buffer = true
Response.CacheControl = "PRIVATE"
Response.Expires = 0
%>
Bengal Cuisine - Menu
<%
' session("postcode") = request.form("postcode")
'Set CnTandoori = Server.CreateObject( "ADODB.Connection" )
'path = Server.Mappath("../data/Tandoori.mdb")
'CnTandoori.open "driver={Microsoft Access Driver (*.mdb)};dbq="& path
IF Request.QueryString("MODE") = "EDITORDER" then
session("InstructionsToShef") = Request.Form("txtInstructionsToShef")
End if
set CnlTandoori = session("CnTandoori")
strlSQL = "SELECT Item.*,CATDescription,CATColor FROM Item, category WHERE Item.ITMCategoryID = Category.CATCategoryID "
strlSQL =strlSQL & "order by ITMCategoryID,ITMItemNo"
Set rstlItemList = Server.CreateObject("ADODB.Recordset")
rstlItemList.open strlSQL,CnlTandoori,1,2
' Open Categories table to display on top
strlSQL = "SELECT * FROM Category Order by CATCategoryID"
Set rstlCategoryList = Server.CreateObject("ADODB.Recordset")
rstlCategoryList.open strlSQL,CnlTandoori,1,2
%>