<%
id = Request.QueryString("id")
Page = Request.QueryString("Page")
Keys=Server.UrlEnCode(Request.QueryString("Keys"))
hrefstr = "?keys="&Keys&"&Page="&Page
If id<>"" And IsNumeric(id) Then
Set Rs = Server.CreateObject("ADODB.RecordSet")
Rs.Open "Select * From customer Where cs_belong="&Session("employee_id")&" and customer.id="&id,Conn,1,1
If Not Rs.Bof And Not Rs.Eof Then
cs_company=TextUncode(Rs("cs_company"))
cs_name=TextUncode(Rs("cs_name"))
cs_country=Rs("cs_country")
cs_tel=TextUncode(Rs("cs_tel"))
cs_email=TextUncode(Rs("cs_email"))
cs_whatsapp=TextUncode(Rs("cs_whatsapp"))
cs_wechat=TextUncode(Rs("cs_wechat"))
cs_linkedin=TextUncode(Rs("cs_linkedin"))
cs_facebook=TextUncode(Rs("cs_facebook"))
cs_address=TextUncode(Rs("cs_address"))
cs_alibaba=TextUncode(Rs("cs_alibaba"))
cs_code=TextUncode(Rs("cs_code"))
cs_deal=TextUncode(Rs("cs_deal"))
cs_addtime=Rs("cs_addtime")
cs_belongclient=Rs("cs_belongclient")
cs_updatetime=Rs("cs_updatetime")
cs_from=Rs("cs_from")
cs_type=Rs("cs_type")
cs_note=HtmlUnCode(Rs("cs_note"))
cs_claimFrom=Rs("cs_claimFrom")
allowedit=Rs("allowedit")
Else
Rs.Close:Set Rs=Nothing
Conn.Close:Set Conn=Nothing
response.write ""
response.End
End If
Rs.Close:Set Rs=Nothing
Else
response.write ""
Rs.Close:Set Rs=Nothing
Conn.Close:Set Conn=Nothing
response.redirect hrefstr
End If
%>