www.gusucode.com > CC校友录贴吧 CCBar源码程序asp编程 > dialog/dialog_collection_form.asp

    <%
'===================================================================
'= ASP FILENAME	: /dialog/dialog_collection_form.asp
'= CREATED TIME : 2006-5-5
'= LAST MODIFIED: 2006-5-5
'= 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 = "./dialog_inc.asp" -->
<%
'========================================================
'==   Action参数设置
'========================================================
'== 页面名
Const CONST_PAGE_FILE	= "dialog/dialog_collection_form.asp"

'== 页面标题/功能
Const CONST_PAGE_TITLE	= "加为收藏"

'== 功能函数名字空间
Const CONST_ACTION_FUNC	= "FormAddCollectionCtl"

'== 相对根目录路径 
GBL_strHomeURL			= "../"

'== 在模板中引用的标签变量
Dim TAG_strVerifyCode
Dim TAG_intType,TAG_intOID,TAG_strClew

'== 页面构造
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/page_dialog_collection_form.html.asp" --> 
<%
End Function

'=====================================================================
'= Function         : FormAddCollectionCtl()
'= Time        : Created At 2006-5-6
'= Input       : 
'= Description : 加为收藏
'=====================================================================
Function FormAddCollectionCtl()
	Dim strName
	TAG_intType = Trim(Request.QueryString("iptType"))
	TAG_intOID =  Trim(Request.QueryString("OID"))
	strName = Trim(Request.QueryString("iptName"))
	Select Case TAG_intType
		Case	0	:
				TAG_strClew = "确认要把用户<font color=ff0000>" & strName & "</font>加为好友?"
		Case	1	:
				TAG_strClew = "确认要把帖子<font color=ff0000>" & strName & "</font>加为收藏?"
		Case	2	:
				TAG_strClew = "确认要把相片<font color=ff0000>" & strName & "</font>加为收藏?"
	End Select
End Function
%>