<%@ LANGUAGE="VBSCRIPT" %> <% '=============================================== ' 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 COOKIE VALUES FOR CUSTOMER AREA ACCESS 'customer_security include will bounce us out 'if these details are incorrect. '----------------------------------------------- response.cookies(Application(LICENSENUMBER & "cookiename"))("CD_EmailAddress") = request.querystring("CD_EmailAddress") response.cookies(Application(LICENSENUMBER & "cookiename"))("CD_Password") = request.querystring("CD_Password") response.redirect("customer_showorder.asp") %>