sql = "select * from members where user='" & Session("smsUserSession") & "' and ctype='person'"
If Not IsEmpty(Request.Form("Submit")) Then
If Len(Request.Form("lsnotselect")) <> 0 Then arr = Split(Request.Form("lsnotselect"),",")
For i = 0 To UBound(arr)
response.Write(deleting&"<BR>")
Next
End If
End If
%>
<head>
<body>
<form name="delmember" method="post" action="addressIf.asp" target="addressIF">
<table>
<tr>
<td>
<table border="1" cellpadding="2" cellspacing="0" width="100%">
<%
cnt = 0
If searchtype="All" or searchtype="Person" Then
do until rs.eof
cnt = cnt + 1
%>
<tr>
<td>
<input type="checkbox" name="lsnotselect" value="<%=rs("name")&rs("surname")&rs("phone")%>" <%if task=1 then %>checked<%end if%>>
</td>
<td class="Black12px"><%=rs("name") & " " & rs("surname")%></td>
</tr>
<%
rs.movenext
loop
End If
%>
</table>
</TD>
</TR>
</Table>
</form