|
<%=subMenu%>
|
 |
| Try that Saucy-style of cooking at home. The Chef reveals step-by-step instructions on how to prepare some of his favorite recipes. |
<%
do while not rs.EOF
%>
<%=rs("menuItem")%>
<% strDesc = rs("menuItemDesc")
if strDesc <> "" or strDesc <> null then %>
<%=strDesc%>
<% end if
strPrice = rs("menuItemPrice")
if strPrice <> "" or strPrice = null then %>
$<%=strPrice%>
<%
end if
if menuType = 0 or menuType = 3 then
strWine = rs("menuWine")
if strWine <> "" or menuType <> null then
%>
Wine Rec: <%=strWine%>
<% end if
end if
recImage = rs("menuItemImage")
recLink = rs("menuItemRecipe")
%>
<% if recLink <> "" or recLink <> null then
strID = rs("id")
%>
<% end if %>
|
<%
if recImage <> "" or recImage <> null then
if recLink <> "" or recLink <> null then
%>
<% else %>
<% end if
else%>
<% end if %>
|
 |
<%
rs.MoveNext
loop
rs.close
set rs=nothing
data.close
set data=nothing
%>
|
|