?? album_review_del.asp
字號:
<%
''===================================================================
'= ASP FILENAME : /album/album_review_del.asp
'= CREATED TIME : 2006-5-6
'= LAST MODIFIED: 2006-5-6
'= 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_execute.asp" -->
<!-- #include file = "./album_inc.asp" -->
<!-- #include file = "../inc/logic/logic_album.asp" -->
<%
'========================================================
'== Action參數(shù)設(shè)置
'========================================================
'== 頁面名
Const CONST_PAGE_FILE = "album/album_review_del.asp"
'== 頁面標(biāo)題/功能
Const CONST_PAGE_TITLE = "刪除相片評論"
'== 功能函數(shù)名字空間
Const CONST_ACTION_FUNC = "DelReviewAlbumCtl"
'== 相對根目錄路徑
GBL_strHomeURL = "../"
'== 頁面構(gòu)造
Call ActionBuild()
'== 請求校驗與過濾
Call ActionFilter(CONST_PAGE_FILE,CONST_ACTION_FUNC)
'== 頁面析構(gòu)
Call ActionOver()
%>
<%
''===================================================================
'= Function : DelReviewAlbumCtl()
'= Time : Created At 2006-5-5
'= Input :
'= Description : 刪除相片評論
'==================================================================='
Function DelReviewAlbumCtl()
Dim intAlbumReviewId,strSql,intPageNow,intAlbumId
'== 服務(wù)器端數(shù)據(jù)校驗
If Not ServerDataCheck(arrDelAlbumReviewDataChk) Then Exit Function
'== 取得訪問值
intAlbumReviewId = FmtFormData(Request.QueryString("intAlbumReviewId"))
intPageNow = FmtFormData(Request.Form("intPageNow"))
intAlbumId = FmtFormData(Request.QueryString("intAlbumId"))
'== 邏輯處理
strSql = " AND ALBUM_REVIEW_ID=" & intAlbumReviewId & " AND ALBUM_REVIEW_OWNER_ID=" & GBL_intUserId
If Not RemoveAlbumReviewsLogic(strSql,intAlbumId) Then Exit Function
'== 成功處理
Dim strHtmlCode,strSuccUrl
strHtmlCode = "您刪除相片評論成功"
strSuccUrl = "album/album_view.asp?intAlbumId=" & intAlbumId
Call SuccExecute(strHtmlCode,strSuccUrl)
End Function
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -