<%@ LANGUAGE="VBSCRIPT" %> <% strInterface = "bk" strThisBackPage = "config" %> <% '=============================================== ' Parodia Internet Recruitment Software ' ©1998-2004 Cactusoft Ltd. www.parodia.net '=============================================== ' 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 '----------------------------------------------- numLoginID = NumSafe(request.querystring("LOGIN_ID"), 0, 0) '----------------------------------------------- 'DELETE THE RECORD '----------------------------------------------- strQuery = strDeleteSyntax & " tblCactusLogins WHERE LOGIN_ID = " & numLoginID Call ExecuteSQL(strQuery,numCursorType,objRecordSet) '----------------------------------------------- 'REDIRECT TO LIST '----------------------------------------------- response.redirect "y_list_login.asp" %>