%@LANGUAGE="VBSCRIPT"%> <% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Spd E-Letter v4 ' © 2001, 2002 PensaWorks, inc. ' For help with this program, please visit http://www.pensaworks.com '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Access = "User" : Nav3 = "1" %> <% thisPage = Mid(request.servervariables("SCRIPT_NAME"), InstrRev(request.servervariables("SCRIPT_NAME"), "/") + 1) totalWidth = 0 if (request("action") = "step2" OR request("action") = "step3" OR request("action") = "step4" OR request("action") = "step5" OR request("action") = "step6") then action = lcase(request("action")) else action = "step1" if (request("frmMergeTo") <> "" AND isNumeric(request("frmMergeTo"))) then frmMergeTo = clng(request("frmMergeTo")) else frmMergeTo = 0 if (request("frmPurge") <> "" AND isNumeric(request("frmPurge"))) then frmPurge = clng(request("frmPurge")) else frmPurge = 1 if (request("frmFormat") <> "" AND isNumeric(request("frmFormat"))) then frmFormat = clng(request("frmFormat")) else frmFormat = 1 for each item in request("frmMergeFrom") if (frmMergeFrom = "") then frmMergeFrom = "," & item & "," else frmMergeFrom = frmMergeFrom & item & "," next if request("reset") <> "" then frmFormat = 1 frmPurge = 1 frmMergeTo = 0 frmMergeFrom = "" action = "step1" end if if action = "step2" and frmMergeFrom = "" then action = "step1" msg = 1 end if if action = "step3" and frmMergeTo = 0 then action = "step2" msg = 2 end if %>
|
List Merge <% if msg = 1 then %>Error: You must choose at least one list to merge from. <% elseif msg = 2 then %>Error: You must choose the list to merge into. <% end if %> <% if action = "step1" then %>Step 1 of 5 Please choose the list(s) you want to merge. <% elseif action = "step2" then %>Step 2 of 5 Please choose the list you want to merge into. <% elseif action = "step3" then %>Step 3 of 5 Please choose the options and settings for the merge. <% elseif action = "step4" then %>Step 4 of 5 Please confirm your merge options and then hit 'Finish'. The lists will then be merged. <% elseif action = "step5" then %>Step 5 of 5 Merging your lists. Please wait while this process completes. Do not close your browser or hit refresh. The list merge is complete. If you wish to merge more lists, please click here. <% else %>No Action was specified. Redirecting to step 1 <% end if %> |
|||
|
|