管理区域
<%
Act = Request.QueryString("act")
tagName=Request.QueryString("tagName")
If tagName="" or IsNull(tagName) Then
response.redirect "customers.asp"
End If
If Act="postchk" Then
Keys = Server.UrlEnCode(Request.QueryString("Keys"))
chkact = replace(Request.Form("chkact"),"t","")
SqlStr="("&Request.Form("chkbox")&")"
updateStr = "Update Customer Set cs_updatetime='"&now()&"',cs_code=Replace(cs_code,'-','/'+(select em_code from employee where id="&chkact&")+'-'),cs_belong="&chkact&",cs_chain=cs_chain+',"&chkact&"' where id in "&SqlStr
deleteTag="delete from tagTable where customerId in "&SqlStr
Conn.Execute (updateStr):Conn.Execute(deleteTag):Conn.Close:Set Conn=Nothing
Response.Redirect "tag.asp?tagName="&server.UrlEnCode(tagName)
Response.End
End If 'End postchk
tagStr=""
Set Rs=Server.CreateObject("ADODB.RecordSet")
Rs.Open "select DISTINCT tagName from tagTable where employeeId="&Session("employee_id"),conn,1
Do while not Rs.bof and not Rs.eof
tagStr=tagStr&""&Rs("tagName")&","
Rs.moveNext
loop
Rs.close
%>