28,406
社区成员
发帖
与我相关
我的任务
分享
<%
Dim Mobile,RS2
SqlStr="Select UserID,GroupID,UserName,Mobile From User where Locked=0 and GroupID=15 Order By UserID"
Set RS2=Server.CreateObject("ADODB.RECORDSET")
RS2.Open SqlStr,Conn,1,1
IF RS2.Eof And RS2.Bof Then
Mobile=""
Else
if Mobile ="" then
Mobile=rs2("Mobile")
else
Mobile=Mobile&","&rs2("Mobile")
end if
end if
response.write Mobile
%>