%@LANGUAGE="VBSCRIPT"%> <% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Spd E-Letter v4 ' © 2001, 2002 PensaWorks, inc. ' For help with this program, please visit http://www.pensaworks.com '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Dim Access : Access = "User" Dim Nav3 : Nav3 = "2" %> <% server.scripttimeout = 1000 ListID = 0 if (session("svListID") <> "") then ListID = Session("svListID") if (request("ListID") <> "" AND IsNumeric(request("ListID"))) then ListID = CInt(request("ListID")) if not allowedList(listID, allowedLists) then response.redirect "message.asp?msg=49" if listID <> 0 then set getList = mlConn.Execute("SELECT Listname FROM ML_Lists WHERE ListID = " & listID) if getList.EOF then impListName = "None" else impListName = getList("ListName") end if set getList = nothing end if if (request("action") <> "" AND IsNumeric(request("action"))) then action = CInt(request("action")) else Action = 1 if Action = 2 then delimiter = request("delimiter") if delimiter = "" then Action = 1 : msg = 1 end if if delimiter = "o" then delimiterType = request("otherDelimiter") else delimiterType = delimiter if CStr(request("type")) = "2" then action = 3 else action = 4 chrDel = request("Delimiter") select case chrDel case "c" chrDel = "," txtDel = "Comma [ , ]" case "p" chrDel = "|" txtDel = "Pipe [ | ]" case "t" chrDel = chr(9) txtDel = "Tab" case "o" if request("OtherDelimiter") <> "" then chrDel = request("OtherDelimiter") txtDel = "Other [ " & request("OtherDelimiter") & " ]" else response.redirect("message.asp?msg=23") end if end select end if %>
|
Import Subscribers Please choose the file you wish to pull for the import below. <% elseif Action = 4 then %>
<% else %> <% if msg = 1 then %> You must choose a delimiter type. <% end if %> <% end if %> |
|||
|
|