?? empmain_base_disp.asp
字號:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/EmpMain.asp" -->
<!--#include file="EmpMain_CheckRight.asp"-->
<%
if request.QueryString("pagetype") <> "" then
if request.QueryString("pagetype") <> "Base" then
url = "empmain_" &request.QueryString("pagetype")& "_Disp.asp?ID=" & request.QueryString("ID") & "&pagetype=" & request.QueryString("pagetype")
response.Redirect(url)
response.end
end if
end if
%>
<%
Dim genInfo__MMColParam
genInfo__MMColParam = "1"
If (Request.QueryString("ID") <> "") Then
genInfo__MMColParam = Request.QueryString("ID")
End If
%>
<%
Dim genInfo
Dim genInfo_numRows
Set genInfo = Server.CreateObject("ADODB.Recordset")
genInfo.ActiveConnection = MM_EmpMain_STRING
genInfo.Source = "SELECT * FROM kufu WHERE ID = " + Replace(genInfo__MMColParam, "'", "''") + ""
genInfo.CursorType = 0
genInfo.CursorLocation = 2
genInfo.LockType = 1
genInfo.Open()
genInfo_numRows = 0
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>姓名</title>
<link rel="stylesheet" href="CSS/SellWellWeb.css" type="text/css">
</head>
<body class="body">
<form method="POST" action="EmpMain_Base_Disp.asp" webbot-action="--WEBBOT-SELF--" class="body">
<fieldset style="padding: 2" class="fiedset"> <legend>基本信息</legend>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="98%" id="AutoNumber1" class="table" align="center">
<tr>
<td nowrap align="right" class="Caption" width="25%">編號:</td>
<td class="ValueArea" width="25%"><%=(genInfo.Fields.Item("ID").Value)%></td>
<td nowrap align="right" class="Caption" width="25%">聯系人:</td>
<td width="25%" class="ValueArea"> <p align="left"><%=(genInfo.Fields.Item("聯系人").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" class="Caption">公司名稱:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("公司名稱").Value)%></td>
<td width="25%" nowrap align="right" class="Caption">職務:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("職務").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" class="Caption">聯系電話:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("聯系電話").Value)%></td>
<td width="25%" nowrap align="right" class="Caption">省份/城市:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("省份").Value)+(genInfo.Fields.Item("城市").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" class="Caption">傳真號碼:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("傳真").Value)%></td>
<td width="25%" nowrap align="right" class="Caption">手機:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("手機").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" class="Caption">通訊地址:</td>
<td colspan="3" class="ValueArea"><%=(genInfo.Fields.Item("地址").Value)%></td>
</tr>
<tr>
<td nowrap align="right" class="Caption" width="25%">客戶等級:</td>
<td class="ValueArea" width="25%"><%if genInfo.Fields.Item("客戶等級").Value="" then
response.write("該客戶未分類")
else
response.write(genInfo.Fields.Item("客戶等級").Value)
end if
%></td>
<td nowrap align="right" class="Caption" width="25%">添加日期:</td>
<td width="25%" class="ValueArea"><%=(genInfo.Fields.Item("date").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" height="20" class="Caption">該公司email:</td>
<td width="25%" height="20" class="ValueArea"><%=(genInfo.Fields.Item("email").Value)%></td>
<td width="25%" nowrap align="right" height="20" class="Caption">錄入人:</td>
<td width="25%" height="20" class="ValueArea"><%=(genInfo.Fields.Item("錄入人").Value)%></td>
</tr>
<tr>
<td width="25%" nowrap align="right" class="Caption">客戶簡介:</td>
<td colspan="3" class="ValueArea"><%=(genInfo.Fields.Item("備注").Value)%></td>
</tr>
</table>
</fieldset></form>
<div align="right"> </div>
</body>
</html>
<%
genInfo.Close()
Set genInfo = Nothing
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -