コードコピーは次のとおりです。
'*************************************************
'関数ID:0016 [執行者の名前を取得]
'関数名:gt_the_proname
'機能:執行者の名前を取得します
'パラメーター:
'返品値:執行者の名前を返します
'*************************************************
functiongt_the_proname()
dimfu_name、temp、tempsiz
temp = request.servervariables( "path_info")
fu_name = split(temp、 "/"、-1,1)
tempsiz = ubound(fu_name)
gt_the_proname = fu_name(tempsiz)
エンド機能