📄 address_search_result.asp
字号:
<%
'===================================================================
'= ASP FILENAME : /address/address_search_result.asp
'= CREATED TIME : Feb,08,2004
'= LAST MODIFIED: Feb,08,2004
'= VERSION INFO : CCASP Framework Ver 2.0.1 ALL RIGHTS RESERVED BY www.cclinux.com
'= DESCRIPTION : 校友搜索显示
'= Change Log:
'===================================================================
%>
<!-- #include file = "../inc/customer/include_customer_action_view.asp" -->
<!-- #include file = "../main_func.asp" -->
<!-- #include file = "./address_inc.asp" -->
<!-- #include file = "../inc/logic/logic_user.asp" -->
<%
'========================================================
'== Action参数设置
'========================================================
'== 页面名
Const CONST_PAGE_FILE = "address/address_search_result.asp"
'== 页面标题/功能
Const CONST_PAGE_TITLE = "校友搜索"
'== 功能函数名字空间
Const CONST_ACTION_FUNC = "ShowClassmateSearchCtl"
'== 相对根目录路径
GBL_strHomeURL = "../"
'== 页面构造
Call ActionBuild()
'== 在模板中引用的标签变量
Dim TAG_objRS '== 列表记录集
Dim TAG_strPageNav '== 翻页导航
Dim TAG_strOrderUrl '== 排序链接
'== 请求校验与过滤
Call ActionFilter(CONST_PAGE_FILE,CONST_ACTION_FUNC)
'== 页面析构
Call ActionOver()
%>
<%
'===================================================================
'= Function : LoadPageTpl()
'= Time : Created At 2006-5-4
'= Description : 加载页面模块
'===================================================================
Function LoadPageTpl()
%>
<!-- #include file = "../template_c/page_address_search_result.html.asp" -->
<%
End Function
'===================================================================
'= Function : ShowClassmateSearchCtl()
'= Time : Created At 2006-5-14
'= Input : None
'===================================================================
Function ShowClassmateSearchCtl()
Dim intMaxPerPage,strFileName,intTotalPut,intCurPage
Dim strKey,strCondition,intPrecision '== Get form data
Dim strAddInfo,strSql '== checked data's clew
intMaxPerPage = GBL_intMaxPerPage
TAG_intPerPage = GBL_intMaxPerPage
strFileName = "address_search_result.asp?action=ShowClassmateSearch&iptKey=" & strKey & "&selCondition=" & strCondition & "&selPrecision=" & intPrecision
'== 逻辑处理
strSql = SearchQueryFmt(arrAddressSearch)
If Not GetUsersLogic(strSql & GetOrder()) Then Exit Function
'== 数据库查询sql存放session
Session(GBL_strCookieURL & "SEN_QuerySql") = strSql
If Not ResultExecute(GBL_objPubDB.intRSNum,"该校友信息查询结果","ES_DB_NO") Then
Set TAG_objRS = GBL_objPubDB.objPubRS
intTotalPut = GBL_objPubDB.intRSNum
intCurPage = GetCurPage(intMaxPerPage,intTotalPut)
If intCurPage > 1 Then
If (intCurPage - 1) * intMaxPerPage < intTotalPut Then
GBL_objPubDB.objPubRS.Move (intCurPage - 1) * intMaxPerPage
Dim BookMark
BookMark = GBL_objPubDB.objPubRS.BookMark
End If
End If
strFileName = GetOrderUrl(strFileName)
TAG_strPageNav = ShowPageNav(intTotalPut,intMaxPerPage,intCurPage,strFileName)
End If
End Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -