<%@ LANGUAGE="VBSCRIPT" %> <% PageStrings = "72, 285" %> <% '=============================================== ' CactuShop ASP Shopping Cart ' ©1999-2004 Cactusoft Ltd. www.cactusoft.com '=============================================== ' All rights reserved. ' Use of this code is covered by the terms and ' conditions in the license agreement. No ' unauthorized duplication or distribution is ' permitted. Cactusoft's copyright notices must ' remain in the ASP sections of the code. '=============================================== '----------------------------------------------- 'SET ARRAY FOR BUILDPAGE.ASP 'On other pages, this array is created on the 'lockshop.asp include. However, we can't put 'that include here since it would just keep 'forwarding to this page. '----------------------------------------------- %> <% '----------------------------------------------- 'This page gets displayed if CactuShop is closed '----------------------------------------------- '----------------------------------------------- 'READ PAGE TEMPLATE FROM FILE '----------------------------------------------- Call ReadFromTemplate(strTemplateLocation, aryPageTemplate, strBasketHTML, strCategoryListHTML) '----------------------------------------------- 'WRITE FIRST HALF OF PAGE HTML '----------------------------------------------- response.write(aryPageTemplate(0)) %>
<% WriteString("ContentText_ShopIsClosed") %>
<% WriteString("ContentText_ShopClosed") %>
 
<% '----------------------------------------------- 'WRITE LAST HALF OF PAGE HTML '----------------------------------------------- response.write(aryPageTemplate(1)) '----------------------------------------------- 'CLOSE DATA CONNECTIONS '----------------------------------------------- objDataConn.Close set objDataConn = nothing %>