<%@ LANGUAGE="VBSCRIPT" %> <% strThisBackPage = "config" %> <% '=============================================== ' 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. '=============================================== '----------------------------------------------- 'COLLECT VALUES FROM FORM '----------------------------------------------- LOGIN_ID = request.querystring("LOGIN_ID") & "" if LOGIN_ID = "" then LOGIN_ID = 0 '----------------------------------------------- 'DELETE IT '----------------------------------------------- strQuery = strDeleteStatementSyntax & " tblCactuShopLogins WHERE LOGIN_ID = " & LOGIN_ID call executeSQL(strQuery,numCursorType,objRecordSet) '----------------------------------------------- 'REDIRECT TO THE LIST '----------------------------------------------- response.redirect "_login_list.asp" %>