?? user_basemdy_save.asp
字號(hào):
<%
'===================================================================
'= ASP FILENAME : /user/user_basemdy_save.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_execute.asp" -->
<!-- #include file = "../main_func.asp" -->
<!-- #include file = "./user_inc.asp" -->
<!-- #include file = "../inc/logic/logic_user.asp" -->
<%
'========================================================
'== Action參數(shù)設(shè)置
'========================================================
'== 頁面名
Const CONST_PAGE_FILE = "user/user_basemdy_save.asp"
'== 頁面標(biāo)題/功能
Const CONST_PAGE_TITLE = "用戶資料修改"
'== 功能函數(shù)名字空間
Const CONST_ACTION_FUNC = "FormSaveBaseInfoMdyCtl"
'== 相對(duì)根目錄路徑
GBL_strHomeURL = "../"
'== 頁面構(gòu)造
Call ActionBuild()
'== 請(qǐng)求校驗(yàn)與過濾
Call ActionFilter(CONST_PAGE_FILE,CONST_ACTION_FUNC)
'== 頁面析構(gòu)
Call ActionOver()
%>
<%
'===================================================================
'= Function : FormSaveBaseInfoMdyCtl()
'= Time : Created At Nov,03,2003
'= Input :
'= Description : 用戶資料修改
'===================================================================
Function FormSaveBaseInfoMdyCtl()
'== 服務(wù)器端數(shù)據(jù)校驗(yàn)
If Not ServerDataCheck(arrUserMdyDataChk) Then
Exit Function
End If
'== 表單數(shù)據(jù)獲取
Call CnvFormData(strUserMdyFormName,GBL_objFormData)
'== 邏輯處理
If Not SaveUserLogic(GBL_intUserId,GBL_objFormData) Then Exit Function
'== 成功處理
Dim strHtmlCode,strSuccUrl
strHtmlCode = "您的用戶資料修改成功"
strSuccUrl = "user/user_basemdy_form.asp"
Call SuccExecute(strHtmlCode,strSuccUrl)
End Function
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -