%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'| |
'| Default |
'| |
'=====================================================
%>
<%
Option explicit
Response.Expires = 0
%>
<%
'------------ ACCESS CONTROL ------------------
%>
<%
'------------ VARIABLE DEFINITION -------------
Dim rsUser
'Dim objBtnControl
'Dim aTabBtnsDef
'------------ CONSTANTS DECLARATION -----------
'Const LIMG_USER = "
"
'Const LIMG_USER_DISABLED = "
"
'Const LIMG_ROLE = "
"
'------------ VARIABLE INIT -------------------
'Set objBtnControl = New ActionButtonControl
'------------ CONDITIONS ----------------------
'----------------------------------------------
%>
<%
'------------ RUN BEFORE PAGE RENDER ----------
objPMod.PersistInQryString ("tree")
'----------------------------------------------
%>
<%
If (Request("action") <> "") Then
'-- Select Action
Select Case Request("action")
Case "btnRemoveAccount"
Call OpenInWindow ( "_RemoveUserAccount.asp?user_id_list="& Request("user_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
End Select
End If
%>