📄 view.asp
字号:
<!--#include file="conn.asp" -->
<%
if session("name")="" or session("dd")="" then
response.write "SORRY <br>"
response.write "数据在携带中出现意外!<br>"
response.write "<a href=login.asp>回去重来</a>"
response.end
end if
dim rs,sql
sql="select * from customer where id="&request("id")&" and vest_m="&session("dd")&" and vest_s="&request("sclass")&""
set rs=server.createobject("adodb.recordset")
rs.Open sql,conn,1,3
if not rs.EOF then
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>客户管理系统</title>
</head>
<STYLE type=text/css>
BODY { FONT-FAMILY: "宋体","Arial Narrow","Times New Roman"; FONT-SIZE: 9pt}
TD { FONT-FAMILY: "宋体","Arial Narrow","Times New Roman"; FONT-SIZE: 9pt; line-height: 150%}
a:link { color: #3366FF; text-decoration: none}
a:visited { color: #3366FF; text-decoration: none}
a:hover { color: #FF0080; text-decoration: underline}
.p1 { FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
.p2 { COLOR: #c0c0c0; FONT-SIZE: 9pt; LINE-HEIGHT: 14pt}
input { font-family: "宋体"; font-size: 9pt;color:#0000FF}
</STYLE>
<body>
<script Language="JavaScript">
<!--
function FrontPage_Form1_Validator(theForm)
{
if (theForm.sclass.selectedIndex < 0)
{
alert("分类必须选择!");
theForm.sclass.focus();
return (false);
}
if (theForm.name.value == "")
{
alert("客户姓名必须填写!");
theForm.name.focus();
return (false);
}
if (theForm.name.value.length >16)
{
alert("您的客户姓名填写是否正确?请确认!");
theForm.name.focus();
return (false);
}
return (true);
}
//-->
</script>
<form method="POST" action="editsave.asp" name="FrontPage_Form1" onsubmit="return FrontPage_Form1_Validator(this)" >
<div align="center">
<table border="0" width="554" cellspacing="1" cellpadding="0" height="211" bgcolor="#DADADA" id="table1">
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">客户姓名 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <input type="hidden" name="mclass" size="18" maxlength="20" value="<%=session("dd")%>"><input type="hidden" name="id" size="18" maxlength="20" value="<%=request("id")%>"><%=rs("name")%>
<font color="#FF0000"></font></td>
</tr>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">客户性别 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%
if rs("sex") ="0" then
response.write"男"
else
response.write"女"
end if
%>
</td>
</tr>
<%
if rs("city") ="未知" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">所属地区 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("city")%></td>
</tr>
<%end if%>
<%
if rs("zhiwu") ="不详" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">职
务 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("zhiwu")%></td>
</tr>
<%end if%>
<%
if rs("company") ="未知或无" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">所属单位 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("company")%></td>
</tr>
<%end if%>
<%
if rs("mobile") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">联系手机 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("mobile")%></td>
</tr>
<%end if%>
<%
if rs("comphone") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">单位电话 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("comphone")%></td>
</tr>
<%end if%>
<%
if rs("fax") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">单位传真 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("fax")%></td>
</tr>
<%end if%>
<%
if rs("homephone") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">家庭电话 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("homephone")%></td>
</tr>
<%end if%>
<%
if rs("email") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">电子邮件 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("email")%> <a href="mailto:<%=rs("email")%>">点此给该客户发送邮件</a></td>
</tr>
<%end if%>
<%
if rs("oicq") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">Oicq </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("oicq")%> <a alt="点击发送消息给对方" target="_blank" href="http://wpa.qq.com/msgrd?V=1&Uin=<%=rs("oicq")%>&Menu=no">点击发送消息给对方</a></td>
</tr>
<%end if%>
<%
if rs("msn") ="未填" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">MSN </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%=rs("msn")%></td>
</tr>
<%end if%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">重要度 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%
if rs("zy") ="0" then
response.write"初步联络的客户"
end if
if rs("zy") ="1" then
response.write"一般客户"
end if
if rs("zy") ="2" then
response.write"<font color=#FF0000>重要的客户</font>"
end if
%>
</td>
</tr>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">所属类别 </td>
<td width="408" bgcolor="#FFFFFF" height="25"> <%
dim foldersql,folderrs,rsclass
rsclass=Request("sclass")
set folderrs=server.createobject("adodb.recordset")
foldersql="select * from sclass where vest ="&Request("mclass")&" and sclass_id="&rsclass&" "
folderrs.open foldersql,conn,1,1
%>
<%=folderrs("sclass_folder")%>
<%
folderrs.close
set folderrs=nothing
%>
</td>
</tr>
<%
if rs("content") ="无注释" then
response.write""
else
%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">备注 </td>
<td width="408" bgcolor="#FFFFFF" height="25">
<%=rs("content")%></td>
</tr>
<%end if%>
<tr>
<td width="143" bgcolor="#EBEBEB" height="25" align="right">入库时间 </td>
<td width="408" bgcolor="#FFFFFF" height="25">
<%=rs("time")%></td>
</tr>
</table>
</div>
<p align="center">
</p>
</form>
</body>
</html>
<%
rs.Close
set rs=nothing
end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -