listpj.asp
来自「销售系统,包括配件录入,配件销售,配件修改,设置反点条件,VIP用户网上购买等」· ASP 代码 · 共 47 行
ASP
47 行
<!--#include file="conn.asp" -->
<!--#include file="sub.asp" -->
<!--#include file="Cls_ShowoPage.asp"-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="css.css" rel="stylesheet" type="text/css">
<title>无标题文档</title>
<script language="javascript" src="check.js"></script>
<style type="text/css">
<!--
.aa{ filter: alpha(opacity=50)}
.bb{
background-color:#ffffff;
color:#000000;
}
-->
</style>
</head>
<body>
<%
On Error Resume Next
Select case request.QueryString("acction")
case "lr"
call lrpj()
case "xsh"
call xsh()
case "che"
call che()
case else
call listpj()
end select
%>
<% sub che()
if request.Form("homeid")>"" then
if session("che")>"" then
session("che")=session("che")&","&request.Form("homeid")
else
session("che")=request.Form("homeid")
end if
end if
response.Write(session("che"))
end sub
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?