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

📄 untitled-2.asp

📁 该源码包含了CRM系统的基本功能
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<!--#include file=DataBase/conn.asp-->
<%
select case request("eeeet")
case "print_c"
sqlg=""
if request("ClientCountry")<>"全部" then
sqlg=sqlg&" ClientCountry='"&request("ClientCountry")&"'"
end if
if request("ClientCity")<>"全部" then
sqlg=sqlg&"  ClientCity='"&request("ClientCity")&"'"
end if
if request("SetName")<>"全部" then
sqlg=sqlg&" and SetName='"&request("SetName")&"'"
end if
if trim(request("search"))<>"" then
sqlg=sqlg&" and "&request("searchtype")&" like '%"&request("search")&"%'"
end if
sql="select * from tb_Client where "&sqlg

set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1
response.Write(rs("Clientname"))
end select 

%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
 
<%= request("p") %>
<%= request("ty") %>
<%response.write("<script language=javascript>window.open('employeeopen.asp','','width=450,height=450')</script>")%>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -