📄 getcustinfo.asp
字号:
<!-- #INCLUDE FILE="odbc_connection.inc" -->
<%
on error resume next
session("EmptyCart")=0
intSessionID=Session.SessionID
CustomerID=request.Cookies("CustomerID")
if (len(CustomerID)=0 or CustomerID="") then CustomerID=Session("CustomerID")
if len(CustomerID)<10 then CustomerID=""
if len(CustomerID)>0 then
'check customer table for this ID
%><!-- #INCLUDE FILE="CustTblChk.inc" --><%
if rows>0 then
'they exist in our customer table!
'get the data from the table
%><!-- #INCLUDE FILE="custTblGetData.inc" --><%
end if
end if
'write a cookie if we can
%>
<!-- #include file="sendCookies.inc" -->
<!-- #include file="CustForm.inc" -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -