?? success.asp
字號:
<%
'===================================================================
'= ASP FILENAME : /success.asp
'= CREATED TIME : OCT,22,2003
'= LAST MODIFIED: OCT,22,2003
'= VERSION INFO : CCASP Framework Ver 2.0.1 ALL RIGHTS RESERVED BY www.cclinux.com
'= DESCRIPTION : 成功信息提示頁面
'===================================================================
%>
<!-- #include file = "../inc/customer/include_customer_action_view.asp" -->
<!-- #include file = "../main_func.asp" -->
<%
'========================================================
'== Action參數(shù)設置
'========================================================
'== 頁面名
Const CONST_PAGE_FILE = "result/success.asp"
'== 頁面標題/功能
Const CONST_PAGE_TITLE = "成功提示"
'== 功能函數(shù)名字空間
Const CONST_ACTION_FUNC = "ShowSucc"
'== 相對根目錄路徑
GBL_strHomeURL = "../"
'頁面應用構造
Call ActionBuild()
'== 請求校驗與過濾
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/sub_page.html.asp" -->
<%
End Function
'=============== FUNCTION BODY BEGIN ===============================
'===================================================================
'= Sub : ShowSucc()
'= Time : Created At OCT,22,2003
'= Input : 成功號(intSuccId),附加信息(strAddInfo)
'= Calls :
'= Called by :
'= Description : 成功分類(成功號和成功的中文信息)
'===================================================================
Sub ShowSucc()
Dim strSuccStr
Dim intRefreshTime
Dim intSuccId,strSuccUrl
Dim strColumnURL,GBL_strImgPath
'== refresh time
intRefreshTime = GBL_intRefreshTime
strSuccStr = Trim(Request.QueryString("strAddInfo"))
intSuccId = Trim(Request.QueryString("intSuccId"))
strSuccUrl = Trim(Session(GBL_strCookieURL & "SEN_succUrl"))
If strSuccUrl <> "" Then
strColumnURL = GBL_strHomeUrl & strSuccUrl
Session(GBL_strCookieURL & "SEN_succUrl") = ""
End If
GBL_strImgPath = GBL_strHomeUrl & "images/"
%>
<table width="100%" >
<tr align="center" >
<td width="40%" align="right">
<% =MakeImg(GBL_strImgDir & "home_succ.gif","SUCC_ID:" & intSuccId) %>
</td>
<td align="center" width="60%">
<table align="center" width="100%">
<tr align=center>
<td colspan=2>
<% =strSuccStr %>
</td>
<br>
</tr>
<tr align=center>
<td><br>
</td>
<br>
</tr>
<tr>
<td width="30%"></td>
<td>
◇ <a href="javascript:history.go(-1)" title="返回剛才頁面">返回</a>
</td>
</tr>
<tr>
<td></td>
<td>
◇ <a href="<% =GBL_strHomeURL %>" title="回首頁">回首頁</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<meta http-equiv=refresh content="<% =GBL_intRefreshTime %>;URL=<% =strColumnURL %>">
<%
End Sub
'=============== End of Function ShowSucc() ===========================
'=============== FUNCTION BODY END ====================================
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -