⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 empmain_base_disp.asp

📁 ASP经典模块开发大全带源码客户信息管理系统
💻 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 + -