%@LANGUAGE="VBSCRIPT"%> <% '===================================================== '| | '| Application List | '| | '===================================================== %> <% Option explicit Response.Expires = 0 %> <% '------------ ACCESS CONTROL ------------------ %> <% '------------ VARIABLE DEFINITION ------------- Dim rsQry Dim objBtnControl Dim aTabBtnsDef '------------ CONSTANTS DECLARATION ----------- '------------ 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 "btnRemoveApplication" Call OpenInWindow ( "_RemoveApplication.asp?app_id="& Request("app_id") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() ) End Select End If '---------------------------------------------- %>
|
|