📄 show_client.asp
字号:
<!--#include file="../conn.asp"-->
<!--#include file="../IsUser.asp"-->
<!--#include file="../Pub_Fun.asp"-->
<%
if trim(request("type_kind"))="area" then
''判断是否进行查询操作
if request("opstatus")="query" then
''判断是否是进行数据范围的选择
if request("start_time")<>"" and request("end_time")<>"" then
condition=" where ClientCreateDate between '"&request("start_time")&"' and '"&request("end_time")&"'"
end if
'根据传递过来的统计对象变量赋值到变量kind
if trim(request("S_City"))<>"" then
kind=trim(request("S_City"))
else
kind="1"
end if
''如果没有查询操作,则设置默认的查询语句和统计对象
else
condition="where 1=1"
kind="1"
end if
'将查询与加密
condition=encrypt(condition)
'打开图表显示窗口
%>
<script language="JavaScript">
childwin=open("chart_client_area.asp?condition=<%=condition%>&kind=<%=kind%>","客户分析","location=no,menubar=0,status=no,scrollbars,titlebar=no,resizable=1,toolbar=no,width=1000,height=520,top=20,left=20");
</script>
<%
else
''判断是否进行查询操作
if request("opstatus")="query" then
''判断是否是进行数据范围的选择
if request("start_time")<>"" and request("end_time")<>"" then
condition=" where SellDate between '"&request("start_time")&"' and '"&request("end_time")&"'"
else
condition=" where 1=1"
end if
'根据传递过来的统计对象变量赋值到变量kind
if trim(request("S_object"))<>"" then
kind=trim(request("S_object"))
else
kind="1"
end if
''如果没有查询操作,则设置默认的查询语句和统计对象
else
condition="where 1=1"
kind="1"
end if
'将查询与加密
condition=encrypt(condition)
'打开图表显示窗口
%>
<script language="JavaScript">
childwin=open("chart_client_value.asp?condition=<%=condition%>&kind=<%=kind%>","客户分析","location=no,menubar=0,status=no,scrollbars,titlebar=no,resizable=1,toolbar=no,width=1000,height=520,top=20,left=20");
</script>
<%
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -