| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| 3 |
'=====================================================
|
3 |
'=====================================================
|
| 4 |
'| |
|
4 |
'| |
|
| 5 |
'| OSDefault |
|
5 |
'| OSDefault |
|
| 6 |
'| |
|
6 |
'| |
|
| 7 |
'=====================================================
|
7 |
'=====================================================
|
| 8 |
%>
|
8 |
%>
|
| 9 |
<%
|
9 |
<%
|
| 10 |
Option explicit
|
10 |
Option explicit
|
| 11 |
Response.Expires = 0
|
11 |
Response.Expires = 0
|
| 12 |
%>
|
12 |
%>
|
| 13 |
<!--#include file="common/globals.asp"-->
|
13 |
<!--#include file="common/globals.asp"-->
|
| 14 |
<!--#include file="common/config.asp"-->
|
14 |
<!--#include file="common/config.asp"-->
|
| 15 |
<!--#include file="common/common_subs.asp"-->
|
15 |
<!--#include file="common/common_subs.asp"-->
|
| 16 |
<!--#include file="common/_os_common.asp"-->
|
16 |
<!--#include file="common/_os_common.asp"-->
|
| 17 |
<%
|
17 |
<%
|
| 18 |
'------------ ACCESS CONTROL ------------------
|
18 |
'------------ ACCESS CONTROL ------------------
|
| 19 |
%>
|
19 |
%>
|
| 20 |
<!--#include file="_access_control_general.asp"-->
|
20 |
<!--#include file="_access_control_general.asp"-->
|
| 21 |
<%
|
21 |
<%
|
| 22 |
'------------ VARIABLE DEFINITION -------------
|
22 |
'------------ VARIABLE DEFINITION -------------
|
| 23 |
Dim rsQry, rsTemp
|
23 |
Dim rsQry, rsTemp
|
| 24 |
Dim selected, nodeSpec
|
24 |
Dim selected, nodeSpec
|
| 25 |
Dim parHold_selection
|
25 |
Dim parHold_selection
|
| 26 |
Dim ProdId, pkgId
|
26 |
Dim ProdId, pkgId
|
| 27 |
Dim ProdName
|
27 |
Dim ProdName
|
| 28 |
Dim ProdVersion, objFormCollector
|
28 |
Dim ProdVersion, objFormCollector
|
| 29 |
'------------ CONSTANTS DECLARATION -----------
|
29 |
'------------ CONSTANTS DECLARATION -----------
|
| 30 |
'------------ VARIABLE INIT -------------------
|
30 |
'------------ VARIABLE INIT -------------------
|
| 31 |
parHold_selection = Request("hold_selection")
|
31 |
parHold_selection = Request("hold_selection")
|
| 32 |
Set objFormCollector=CreateObject("Scripting.Dictionary")
|
32 |
Set objFormCollector=CreateObject("Scripting.Dictionary")
|
| 33 |
'------------ CONDITIONS ----------------------
|
33 |
'------------ CONDITIONS ----------------------
|
| 34 |
'----------------------------------------------
|
34 |
'----------------------------------------------
|
| 35 |
%>
|
35 |
%>
|
| 36 |
<%
|
36 |
<%
|
| 37 |
'------------ RUN BEFORE PAGE RENDER ----------
|
37 |
'------------ RUN BEFORE PAGE RENDER ----------
|
| 38 |
If (Request("action") <> "") Then
|
38 |
If (Request("action") <> "") Then
|
| 39 |
'-- Select Action
|
39 |
'-- Select Action
|
| 40 |
|
40 |
|
| 41 |
Select Case Request("action")
|
41 |
Select Case Request("action")
|
| 42 |
Case "btnMoveUpProd"
|
42 |
Case "btnMoveUpProd"
|
| 43 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("-") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
43 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("-") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 44 |
Case "btnMoveDownProd"
|
44 |
Case "btnMoveDownProd"
|
| 45 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("+") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
45 |
Call OpenInWindow ( "_ShiftBulkProducts.asp?prod_id_list="& Request("prod_id_list") &"&shift_dir="& Server.URLEncode("+") &"&action=true&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 46 |
Case "btnAcceptRejectProd"
|
46 |
Case "btnAcceptRejectProd"
|
| 47 |
Call OpenInWindow ( "_AcceptRejectProd.asp?prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
47 |
Call OpenInWindow ( "_AcceptRejectProd.asp?prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 48 |
Case "btnCopyProd"
|
48 |
Case "btnCopyProd"
|
| 49 |
Call OpenInWindow ( "_CopyItems.asp?copy_type=prod_id_list&prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
49 |
Call OpenInWindow ( "_CopyItems.asp?copy_type=prod_id_list&prod_id_list="& Request("prod_id_list") &"&rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 50 |
Case "btnRemoveProdBulk"
|
50 |
Case "btnRemoveProdBulk"
|
| 51 |
Call OpenInWindow ( "_RemoveProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL() )
|
51 |
Call OpenInWindow ( "_RemoveProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("prod_id_list") &"&"& objPMod.ComposeURL() )
|
| 52 |
Case "btnIsNodeSpec"
|
52 |
Case "btnIsNodeSpec"
|
| 53 |
Call OpenInWindow ( "_AddProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("node_spec_list") &"&"& objPMod.ComposeURL() )
|
53 |
Call OpenInWindow ( "_AddProductFromOs.asp?rfile="& SCRIPT_NAME &"&prod_id_list="& Request("node_spec_list") &"&"& objPMod.ComposeURL() )
|
| 54 |
Case "btnRemoveObsoletePatches"
|
54 |
Case "btnRemoveObsoletePatches"
|
| 55 |
Call OpenInWindow ( "_RemoveObsoletePatches.asp?rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
55 |
Call OpenInWindow ( "_RemoveObsoletePatches.asp?rfile="& SCRIPT_NAME &"&"& objPMod.ComposeURL() )
|
| 56 |
|
56 |
|
| 57 |
End Select
|
57 |
End Select
|
| 58 |
|
58 |
|
| 59 |
End If
|
59 |
End If
|
| 60 |
|
60 |
|
| 61 |
Call GetProjDetails ( Request("bom_id"), objFormCollector )
|
61 |
Call GetProjDetails ( Request("bom_id"), objFormCollector )
|
| 62 |
'----------------------------------------------
|
62 |
'----------------------------------------------
|
| 63 |
%>
|
63 |
%>
|
| 64 |
<html>
|
64 |
<html>
|
| 65 |
<head>
|
65 |
<head>
|
| 66 |
<title>Deployment Manager</title>
|
66 |
<title>Deployment Manager</title>
|
| 67 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
67 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 68 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
68 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
| 69 |
<link href="scripts/deployment_manager.css" rel="stylesheet" type="text/css">
|
69 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 70 |
<script language="JavaScript" src="scripts/common.js"></script>
|
70 |
<link href="scripts/deployment_manager.css" rel="stylesheet" type="text/css">
|
| 71 |
|
71 |
<script language="JavaScript" src="scripts/common.js"></script>
|
| 72 |
</head>
|
72 |
|
| 73 |
|
73 |
</head>
|
| 74 |
<body leftmargin="0" topmargin="0">
|
74 |
|
| 75 |
<!-- HEADER ++++++++++++++++ -->
|
75 |
<body leftmargin="0" topmargin="0">
|
| 76 |
<!--#include file="_header.asp"-->
|
76 |
<!-- HEADER ++++++++++++++++ -->
|
| 77 |
<!-- +++++++++++++++++++++++ -->
|
77 |
<!--#include file="_header.asp"-->
|
| 78 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
78 |
<!-- +++++++++++++++++++++++ -->
|
| 79 |
<!--#include file="_main_menu.asp"-->
|
79 |
<!-- MAIN MENU + CRUMBS ++++++++++++++++ -->
|
| 80 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
80 |
<!--#include file="_main_menu.asp"-->
|
| 81 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
81 |
<!-- +++++++++++++++++++++++++++++++++++++ -->
|
| 82 |
<tr>
|
82 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 83 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
83 |
<tr>
|
| 84 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
84 |
<td width="1%" valign="top" background="images/bg_bage_0.gif">
|
| 85 |
<!--#include file="_bom_browser.asp"-->
|
85 |
<!-- NODE BROWSER ++++++++++++++++++++++ -->
|
| 86 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
86 |
<!--#include file="_bom_browser.asp"-->
|
| 87 |
</td>
|
87 |
<!-- END OF NODE BROWSER +++++++++++++++ -->
|
| 88 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
88 |
</td>
|
| 89 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
89 |
<td width="1" background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
| 90 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
90 |
<td width="100%" valign="top" bgcolor="#FFFFFF">
|
| 91 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
91 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 92 |
<tr>
|
92 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
| 93 |
<td valign="top" background="images/bg_blue.gif"></td>
|
93 |
<tr>
|
| 94 |
<td align="right" valign="bottom" background="images/bg_blue.gif" class="body_txtw"><%Call RenderTitle( objOsCollector )%></td>
|
94 |
<td valign="top" background="images/bg_blue.gif"></td>
|
| 95 |
<td background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
95 |
<td align="right" valign="bottom" background="images/bg_blue.gif" class="body_txtw"><%Call RenderTitle( objOsCollector )%></td>
|
| 96 |
</tr>
|
96 |
<td background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="20"></td>
|
| 97 |
<tr>
|
97 |
</tr>
|
| 98 |
<td width="1%" valign="top" background="images/bg_blue.gif"></td>
|
98 |
<tr>
|
| 99 |
<td width="100%" valign="bottom" background="images/bg_blue.gif">
|
99 |
<td width="1%" valign="top" background="images/bg_blue.gif"></td>
|
| 100 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
100 |
<td width="100%" valign="bottom" background="images/bg_blue.gif">
|
| 101 |
<!--#include file="_tabs_definition.asp"-->
|
101 |
<!-- TAB CONTROLS ++++++++++++++++++++++ -->
|
| 102 |
<%
|
102 |
<!--#include file="_tabs_definition.asp"-->
|
| 103 |
Set objTabControl = New TabControl
|
103 |
<%
|
| 104 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
104 |
Set objTabControl = New TabControl
|
| 105 |
objTabControl.TabStyle = "StyleWinXP"
|
105 |
objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleWinXP/tab_style.html") ) ' Supply tab style definition
|
| 106 |
objTabControl.AddTabDefnition ( arrOsTabDef )
|
106 |
objTabControl.TabStyle = "StyleWinXP"
|
| 107 |
objTabControl.Render ()
|
107 |
objTabControl.AddTabDefnition ( arrOsTabDef )
|
| 108 |
%>
|
108 |
objTabControl.Render ()
|
| 109 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
109 |
%>
|
| 110 |
</td>
|
110 |
<!-- END OF TAB CONTROLS +++++++++++++++ -->
|
| 111 |
<td width="1%" background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
111 |
</td>
|
| 112 |
</tr>
|
112 |
<td width="1%" background="images/bg_blue.gif"><img src="images/spacer.gif" width="10" height="35"></td>
|
| 113 |
<tr>
|
113 |
</tr>
|
| 114 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
114 |
<tr>
|
| 115 |
<td background="images/bg_bage_0.gif">
|
115 |
<td background="images/bg_bage_0.gif"><img src="images/spacer.gif" width="30" height="10"></td>
|
| 116 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
116 |
<td background="images/bg_bage_0.gif">
|
| 117 |
<%
|
117 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
| 118 |
OraDatabase.Parameters.Add "BOM_ID", Request("bom_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
118 |
<%
|
| 119 |
OraDatabase.Parameters.Add "OS_IDA", Request("os_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
119 |
OraDatabase.Parameters.Add "BOM_ID", Request("bom_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 120 |
|
120 |
OraDatabase.Parameters.Add "OS_IDA", Request("os_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 121 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("run_patch.sql"), ORADYN_DEFAULT )
|
121 |
|
| 122 |
|
122 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("run_patch.sql"), ORADYN_DEFAULT )
|
| 123 |
|
123 |
|
| 124 |
'-- Define Action buttons on this tab
|
124 |
|
| 125 |
aTabBtnsDef = Array("btnAddProd", "btnIsNodeSpec", "btnRemoveProdBulk", "height=30", "btnSortProd", "height=30", "btnAcceptRejectProd", "height=30", "btnCopyProd", "btnPasteProd", "btnPatchGenerate", "btnRemoveObsoletePatches", "btnFTP")
|
125 |
'-- Define Action buttons on this tab
|
| 126 |
|
126 |
aTabBtnsDef = Array("btnAddProd", "btnIsNodeSpec", "btnRemoveProdBulk", "height=30", "btnSortProd", "height=30", "btnAcceptRejectProd", "height=30", "btnCopyProd", "btnPasteProd", "btnPatchGenerate", "btnRemoveObsoletePatches", "btnFTP")
|
| 127 |
Call LoadTabActionButtons ( aTabBtnsDef, objBtnControl )
|
127 |
|
| 128 |
|
128 |
Call LoadTabActionButtons ( aTabBtnsDef, objBtnControl )
|
| 129 |
' -- Tell control if buttons need to be readonly actions
|
129 |
|
| 130 |
objBtnControl.IsReadonlyAction = objBomCollector.Item("is_readonly")
|
130 |
' -- Tell control if buttons need to be readonly actions
|
| 131 |
|
131 |
objBtnControl.IsReadonlyAction = objBomCollector.Item("is_readonly")
|
| 132 |
' -- Conditions
|
132 |
|
| 133 |
If Session( enumSESSION_COPY_TYPE ) <> "prod_id_list" Then
|
133 |
' -- Conditions
|
| 134 |
Call objBtnControl.Active ( "btnPasteProd", "N" )
|
134 |
If Session( enumSESSION_COPY_TYPE ) <> "prod_id_list" Then
|
| 135 |
End If
|
135 |
Call objBtnControl.Active ( "btnPasteProd", "N" )
|
| 136 |
|
136 |
End If
|
| 137 |
' -- Render Buttons
|
137 |
|
| 138 |
Call objBtnControl.Render ( aTabBtnsDef )
|
138 |
' -- Render Buttons
|
| 139 |
|
139 |
Call objBtnControl.Render ( aTabBtnsDef )
|
| 140 |
Dim rsProj, projName, branchName, projId, rsOS, OSName
|
140 |
|
| 141 |
Set rsProj = OraDatabase.DbCreateDynaset( "select br.branch_name, prj.proj_name, prj.proj_id from boms bm, branches br, dm_projects prj where bm.bom_id = "&Request("bom_id")&" and br.BRANCH_ID = bm.BRANCH_ID and prj.PROJ_ID = br.PROJ_ID", cint(0))
|
141 |
Dim rsProj, projName, branchName, projId, rsOS, OSName
|
| 142 |
|
142 |
Set rsProj = OraDatabase.DbCreateDynaset( "select br.branch_name, prj.proj_name, prj.proj_id from boms bm, branches br, dm_projects prj where bm.bom_id = "&Request("bom_id")&" and br.BRANCH_ID = bm.BRANCH_ID and prj.PROJ_ID = br.PROJ_ID", cint(0))
|
| 143 |
projName = rsProj("proj_name")
|
143 |
|
| 144 |
branchName = rsProj("branch_name")
|
144 |
projName = rsProj("proj_name")
|
| 145 |
projId = rsProj("proj_id")
|
145 |
branchName = rsProj("branch_name")
|
| 146 |
|
146 |
projId = rsProj("proj_id")
|
| 147 |
rsProj.Close()
|
147 |
|
| 148 |
Set rsProj = nothing
|
148 |
rsProj.Close()
|
| 149 |
|
149 |
Set rsProj = nothing
|
| 150 |
|
150 |
|
| 151 |
|
151 |
|
| 152 |
Set rsOS = OraDatabase.DbCreateDynaset( "select bt.bos_type from os_base_env obe, base_env be, bos_types bt where obe.OS_ID = "&Request("os_id")&" and be.BASE_ENV_ID = obe.BASE_ENV_ID and bt.BOS_ID = be.BOS_ID", cint(0))
|
152 |
|
| 153 |
|
153 |
Set rsOS = OraDatabase.DbCreateDynaset( "select bt.bos_type from os_base_env obe, base_env be, bos_types bt where obe.OS_ID = "&Request("os_id")&" and be.BASE_ENV_ID = obe.BASE_ENV_ID and bt.BOS_ID = be.BOS_ID", cint(0))
|
| 154 |
OSName = rsOS("bos_type")
|
154 |
|
| 155 |
|
155 |
OSName = rsOS("bos_type")
|
| 156 |
If OSName = "Windows" OR OSName = "MOS" Then
|
156 |
|
| 157 |
OSName = "win32"
|
157 |
If OSName = "Windows" OR OSName = "MOS" Then
|
| 158 |
Else
|
158 |
OSName = "win32"
|
| 159 |
OSName = "sparc"
|
159 |
Else
|
| 160 |
End If
|
160 |
OSName = "sparc"
|
| 161 |
|
161 |
End If
|
| 162 |
rsOS.Close()
|
162 |
|
| 163 |
Set rsOS = nothing
|
163 |
rsOS.Close()
|
| 164 |
|
164 |
Set rsOS = nothing
|
| 165 |
%>
|
165 |
|
| 166 |
<%
|
166 |
%>
|
| 167 |
|
167 |
<%
|
| 168 |
|
168 |
|
| 169 |
|
169 |
|
| 170 |
OraDatabase.Parameters.Remove "BOM_ID"
|
170 |
|
| 171 |
OraDatabase.Parameters.Remove "OS_IDA"
|
171 |
OraDatabase.Parameters.Remove "BOM_ID"
|
| 172 |
|
172 |
OraDatabase.Parameters.Remove "OS_IDA"
|
| 173 |
' Response.Write "<font size=2><a target=Window_Name href=""run_patch.asp?project="&"'" &rsQry("proj_name") & "'"&"&release="&"'"& rsQry("branch_name") &"'"&"&sbom="& rsQry("sbom_version") &"&node="&"'" &rsQry("node_name") &"'"&"&OS="&"'" &rsQry("os_name") &"'"&""">Patch Generation</a></font>"
|
173 |
|
| 174 |
' Response.Write "<font size=2><img src=""icons/i_patch_small.gif""><a target=Window_Name href=""run_patch_GUI.asp?project=" &rsQry("proj_name") & "&release="& rsQry("branch_name") &"&sbom="& rsQry("sbom_version") &"&node=" &rsQry("node_name") &"&OS=" &rsQry("os_name") &""">Patch Generation</a></font>"
|
174 |
' Response.Write "<font size=2><a target=Window_Name href=""run_patch.asp?project="&"'" &rsQry("proj_name") & "'"&"&release="&"'"& rsQry("branch_name") &"'"&"&sbom="& rsQry("sbom_version") &"&node="&"'" &rsQry("node_name") &"'"&"&OS="&"'" &rsQry("os_name") &"'"&""">Patch Generation</a></font>"
|
| 175 |
rsQry.Close
|
175 |
' Response.Write "<font size=2><img src=""icons/i_patch_small.gif""><a target=Window_Name href=""run_patch_GUI.asp?project=" &rsQry("proj_name") & "&release="& rsQry("branch_name") &"&sbom="& rsQry("sbom_version") &"&node=" &rsQry("node_name") &"&OS=" &rsQry("os_name") &""">Patch Generation</a></font>"
|
| 176 |
Set rsQry = Nothing
|
176 |
rsQry.Close
|
| 177 |
%>
|
177 |
Set rsQry = Nothing
|
| 178 |
|
178 |
%>
|
| 179 |
</td>
|
179 |
|
| 180 |
<td background="images/bg_blue.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
180 |
</td>
|
| 181 |
</tr>
|
181 |
<td background="images/bg_blue.gif"><img src="images/p_bar_corrner.gif" width="17" height="42"></td>
|
| 182 |
<tr>
|
182 |
</tr>
|
| 183 |
<td> </td>
|
183 |
<tr>
|
| 184 |
<td> </td>
|
184 |
<td> </td>
|
| 185 |
<td valign="top"><%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) = "hide" Then%><a href="<%=SCRIPT_NAME%>?user_bar=<%=enumDEFAULT%>&<%=objPMod.ComposeURL()%>"><img src="icons/b_left.gif" title="Maximize favourits" width="13" height="13" vspace="5" border="0"></a><%End If%></td>
|
185 |
<td> </td>
|
| 186 |
</tr>
|
186 |
<td valign="top"><%If Request.Cookies( enumCOOKIE_NAME )( "user_bar" ) = "hide" Then%><a href="<%=SCRIPT_NAME%>?user_bar=<%=enumDEFAULT%>&<%=objPMod.ComposeURL()%>"><img src="icons/b_left.gif" title="Maximize favourits" width="13" height="13" vspace="5" border="0"></a><%End If%></td>
|
| 187 |
</table>
|
187 |
</tr>
|
| 188 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
188 |
</table>
|
| 189 |
<tr>
|
189 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
| 190 |
<td>
|
190 |
<tr>
|
| 191 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
191 |
<td>
|
| 192 |
<table width="100%" border="0" cellspacing="3" cellpadding="0">
|
192 |
<!-- PAGE DETAILS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 193 |
<tr>
|
193 |
<table width="100%" border="0" cellspacing="3" cellpadding="0">
|
| 194 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
194 |
<tr>
|
| 195 |
<td width="1%" background="images/bg_table_border.gif"><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
195 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 196 |
<tr>
|
196 |
<td width="1%" background="images/bg_table_border.gif"><table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 197 |
<td align="center" nowrap background="images/bg_table_col.gif" class="body_col"> Install Order</td>
|
197 |
<tr>
|
| 198 |
</tr>
|
198 |
<td align="center" nowrap background="images/bg_table_col.gif" class="body_col"> Install Order</td>
|
| 199 |
</table></td>
|
199 |
</tr>
|
| 200 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Product Name</td>
|
200 |
</table></td>
|
| 201 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
|
201 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Product Name</td>
|
| 202 |
<td width="2%" align="center" background="images/bg_table_col.gif" class="body_col">In Spec</td>
|
202 |
<td width="10%" align="center" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
|
| 203 |
<td width="78%" align="center" background="images/bg_table_col.gif" class="body_col">
|
203 |
<td width="2%" align="center" background="images/bg_table_col.gif" class="body_col">In Spec</td>
|
| 204 |
<SPAN id="IMG_EXPAND_ALL" name="IMG_EXPAND_ALL" style="display:block;"><a href="javascript:;" onClick="ExpandAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Show All Installation Comments."><img src="icons/b_expand_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
204 |
<td width="78%" align="center" background="images/bg_table_col.gif" class="body_col">
|
| 205 |
<SPAN id="IMG_COLLAPSE_ALL" name="IMG_COLLAPSE_ALL" style="display:none;"><a href="javascript:;" onClick="CollapseAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Hide All Installation Comments."><img src="icons/b_collapse_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
205 |
<SPAN id="IMG_EXPAND_ALL" name="IMG_EXPAND_ALL" style="display:block;"><a href="javascript:;" onClick="ExpandAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Show All Installation Comments."><img src="icons/b_expand_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
| 206 |
</td>
|
206 |
<SPAN id="IMG_COLLAPSE_ALL" name="IMG_COLLAPSE_ALL" style="display:none;"><a href="javascript:;" onClick="CollapseAll(); ToggleDisplay('IMG_EXPAND_ALL','IMG_COLLAPSE_ALL');" title="Hide All Installation Comments."><img src="icons/b_collapse_all.gif" border="0" align="absmiddle" hspace="3"></a>Installation Comments</SPAN>
|
| 207 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
207 |
</td>
|
| 208 |
</tr>
|
208 |
<td width="1" background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 209 |
<%If objOsCollector.Item("base_env_id") <> "" Then%>
|
209 |
</tr>
|
| 210 |
<tr>
|
210 |
<%If objOsCollector.Item("base_env_id") <> "" Then%>
|
| 211 |
<td align="center" valign="top"></td>
|
211 |
<tr>
|
| 212 |
<td align="center" valign="top"></td>
|
212 |
<td align="center" valign="top"></td>
|
| 213 |
<td class="body_row" valign="top"><a href="Os_BaseConf.asp?<%=objPMod.ComposeURL()%>" class="body_link"><%=objOsCollector.Item("base_env_name")%></a></td>
|
213 |
<td align="center" valign="top"></td>
|
| 214 |
<td nowrap class="body_row" valign="top"></td>
|
214 |
<td class="body_row" valign="top"><a href="Os_BaseConf.asp?<%=objPMod.ComposeURL()%>" class="body_link"><%=objOsCollector.Item("base_env_name")%></a></td>
|
| 215 |
<td nowrap class="body_row" valign="top"></td>
|
215 |
<td nowrap class="body_row" valign="top"></td>
|
| 216 |
<td class="body_rowlite" valign="top">This base configuration contains the common operating system requirements and software applications.</td>
|
216 |
<td nowrap class="body_row" valign="top"></td>
|
| 217 |
<td align="center"></td>
|
217 |
<td class="body_rowlite" valign="top">This base configuration contains the common operating system requirements and software applications.</td>
|
| 218 |
</tr>
|
218 |
<td align="center"></td>
|
| 219 |
<tr>
|
219 |
</tr>
|
| 220 |
<td colspan="7" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
220 |
<tr>
|
| 221 |
</tr>
|
221 |
<td colspan="7" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 222 |
<%End If%>
|
222 |
</tr>
|
| 223 |
<%
|
223 |
<%End If%>
|
| 224 |
' Load some action buttons
|
224 |
<%
|
| 225 |
Call objBtnControl.LoadActionButtons ( Array("btnEditProd", "btnRemoveProd"), OraDatabase )
|
225 |
' Load some action buttons
|
| 226 |
objBtnControl.ButtonSpacer = 1
|
226 |
Call objBtnControl.LoadActionButtons ( Array("btnEditProd", "btnRemoveProd"), OraDatabase )
|
| 227 |
|
227 |
objBtnControl.ButtonSpacer = 1
|
| 228 |
OraDatabase.Parameters.Add "OS_ID", dbPARos_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
228 |
|
| 229 |
|
229 |
OraDatabase.Parameters.Add "OS_ID", dbPARos_id, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 230 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ProductsList.sql"), ORADYN_DEFAULT )
|
230 |
|
| 231 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
231 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ProductsList.sql"), ORADYN_DEFAULT )
|
| 232 |
ProdId = rsQry("prod_id")
|
232 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
| 233 |
ProdName = rsQry("pkg_name").Value
|
233 |
ProdId = rsQry("prod_id")
|
| 234 |
ProdVersion = rsQry("pkg_version").Value
|
234 |
ProdName = rsQry("pkg_name").Value
|
| 235 |
pkgId = rsQry("pkg_id").Value
|
235 |
ProdVersion = rsQry("pkg_version").Value
|
| 236 |
selected = ""
|
236 |
pkgId = rsQry("pkg_id").Value
|
| 237 |
nodeSpec = ""
|
237 |
selected = ""
|
| 238 |
If rsQry("is_node_spec") = "on" Then
|
238 |
nodeSpec = ""
|
| 239 |
nodeSpec = "checked"
|
239 |
If rsQry("is_node_spec") = "on" Then
|
| 240 |
End If
|
240 |
nodeSpec = "checked"
|
| 241 |
If parHold_selection <> "" Then
|
241 |
End If
|
| 242 |
|
242 |
If parHold_selection <> "" Then
|
| 243 |
If IsTicked ( rsQry("prod_id"), Request("prod_id_list") ) Then
|
243 |
|
| 244 |
selected = "checked"
|
244 |
If IsTicked ( rsQry("prod_id"), Request("prod_id_list") ) Then
|
| 245 |
End If
|
245 |
selected = "checked"
|
| 246 |
End If
|
246 |
End If
|
| 247 |
%>
|
247 |
End If
|
| 248 |
<tr>
|
248 |
%>
|
| 249 |
<td align="center" valign="top"><input type="checkbox" name="prod_id_list" value="<%=ProdId%>" <%=selected%>></td>
|
249 |
<tr>
|
| 250 |
<td align="center" valign="top" class="body_txt"><%=rsQry("seq_num")%></td>
|
250 |
<td align="center" valign="top"><input type="checkbox" name="prod_id_list" value="<%=ProdId%>" <%=selected%>></td>
|
| 251 |
<td nowrap class="body_row" valign="top"><a href="ProdDefault.asp?prod_id=<%=ProdId%>&<%=objPMod.ComposeURL()%>" class="body_link"><%=GetProductIcon(rsQry) & ProdName%></a></td>
|
251 |
<td align="center" valign="top" class="body_txt"><%=rsQry("seq_num")%></td>
|
| 252 |
<%If NOT IsNull(objFormCollector.Item("is_download")) Then%>
|
252 |
<td nowrap class="body_row" valign="top"><a href="ProdDefault.asp?prod_id=<%=ProdId%>&<%=objPMod.ComposeURL()%>" class="body_link"><%=GetProductIcon(rsQry) & ProdName%></a></td>
|
| 253 |
<td valign="top" nowrap class="body_row"><%=rsQry("pkg_version")%><a href="javascript:;" onClick="popup = window.open('LogDownload.asp?url=http://auperaunx26/releases/<%=projName%>/<%=branchName%>/<%=ProdName%>/<%=OSName%>/<%=rsQry("pkg_version")%>/<%=ProdName%>-<%=rsQry("pkg_version")%>-<%=OSName%>.zip&pkg_id=<%=pkgId%>&pkg_version=<%=rsQry("pkg_version")%>', 'Download Version', 'height=440,width=600,scrollbars=yes,resizable=yes'); return false" class="body_link"><img src="icons\i_folder_open.gif" border='0' align="right"></a></td>
|
253 |
<%If NOT IsNull(objFormCollector.Item("is_download")) Then%>
|
| 254 |
<%Else%>
|
254 |
<td valign="top" nowrap class="body_row"><%=rsQry("pkg_version")%><a href="javascript:;" onClick="popup = window.open('LogDownload.asp?url=http://auperaunx26/releases/<%=projName%>/<%=branchName%>/<%=ProdName%>/<%=OSName%>/<%=rsQry("pkg_version")%>/<%=ProdName%>-<%=rsQry("pkg_version")%>-<%=OSName%>.zip&pkg_id=<%=pkgId%>&pkg_version=<%=rsQry("pkg_version")%>', 'Download Version', 'height=440,width=600,scrollbars=yes,resizable=yes'); return false" class="body_link"><img src="icons\i_folder_open.gif" border='0' align="right"></a></td>
|
| 255 |
<td nowrap class="body_row" valign="top"><%=rsQry("pkg_version")%></td>
|
255 |
<%Else%>
|
| 256 |
<%End If%>
|
256 |
<td nowrap class="body_row" valign="top"><%=rsQry("pkg_version")%></td>
|
| 257 |
<td nowrap class="body_row" valign="top"><input type="checkbox" name="node_spec_list" value="<%=ProdId%>" <%=nodeSpec%>></td>
|
257 |
<%End If%>
|
| 258 |
|
258 |
<td nowrap class="body_row" valign="top"><input type="checkbox" name="node_spec_list" value="<%=ProdId%>" <%=nodeSpec%>></td>
|
| 259 |
<td class="body_rowlite" valign="top">
|
259 |
|
| 260 |
<DIV style="display:block;" id="SHORT_<%=ProdId%>" name="SHORT_<%=ProdId%>" >
|
260 |
<td class="body_rowlite" valign="top">
|
| 261 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_rowlite" title="Click to see more...">Click to see more...</a>
|
261 |
<DIV style="display:block;" id="SHORT_<%=ProdId%>" name="SHORT_<%=ProdId%>" >
|
| 262 |
</DIV>
|
262 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_rowlite" title="Click to see more...">Click to see more...</a>
|
| 263 |
<DIV style="display:none;" id="LONG_<%=ProdId%>" name="LONG_<%=ProdId%> style="display:none;">
|
263 |
</DIV>
|
| 264 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_row" title="Click to hide."><%=objFormater.TextToHtml( rsQry("product_comments") )%></a>
|
264 |
<DIV style="display:none;" id="LONG_<%=ProdId%>" name="LONG_<%=ProdId%> style="display:none;">
|
| 265 |
</DIV>
|
265 |
<a href="javascript:;" onclick="ToggleDisplay('SHORT_<%=ProdId%>','LONG_<%=ProdId%>');" class="body_row" title="Click to hide."><%=objFormater.TextToHtml( rsQry("product_comments") )%></a>
|
| 266 |
</td>
|
266 |
</DIV>
|
| 267 |
<%
|
267 |
</td>
|
| 268 |
|
268 |
<%
|
| 269 |
OraDatabase.Parameters.Add "PV_ID", ProdId, ORAPARM_INPUT, ORATYPE_NUMBER
|
269 |
|
| 270 |
|
270 |
OraDatabase.Parameters.Add "PV_ID", ProdId, ORAPARM_INPUT, ORATYPE_NUMBER
|
| 271 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery ("Package_Patches.sql"), ORADYN_DEFAULT )
|
271 |
|
| 272 |
|
272 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery ("Package_Patches.sql"), ORADYN_DEFAULT )
|
| 273 |
If rsTemp.RecordCount = 0 Then
|
273 |
|
| 274 |
|
274 |
If rsTemp.RecordCount = 0 Then
|
| 275 |
|
275 |
|
| 276 |
%>
|
276 |
|
| 277 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%Call objBtnControl.Render ( Array("btnEditProd", "btnRemoveProd") )%></td>
|
277 |
%>
|
| 278 |
</tr>
|
278 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%Call objBtnControl.Render ( Array("btnEditProd", "btnRemoveProd") )%></td>
|
| 279 |
<%
|
279 |
</tr>
|
| 280 |
Else
|
280 |
<%
|
| 281 |
%>
|
281 |
Else
|
| 282 |
|
282 |
%>
|
| 283 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%Call objBtnControl.Render ( Array("btnEditProd") )%></td>
|
283 |
|
| 284 |
</tr>
|
284 |
<td align="center" valign="top" bgcolor="#FAFAF6"><%Call objBtnControl.Render ( Array("btnEditProd") )%></td>
|
| 285 |
<%
|
285 |
</tr>
|
| 286 |
End If
|
286 |
<%
|
| 287 |
|
287 |
End If
|
| 288 |
OraDatabase.Parameters.Remove "PV_ID"
|
288 |
|
| 289 |
rsTemp.Close()
|
289 |
OraDatabase.Parameters.Remove "PV_ID"
|
| 290 |
Set rsTemp = nothing
|
290 |
rsTemp.Close()
|
| 291 |
%>
|
291 |
Set rsTemp = nothing
|
| 292 |
<%rsQry.MoveNext%>
|
292 |
%>
|
| 293 |
|
293 |
<%rsQry.MoveNext%>
|
| 294 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
294 |
|
| 295 |
<tr>
|
295 |
<%If (NOT rsQry.BOF) AND (NOT rsQry.EOF) Then%>
|
| 296 |
<td colspan="6" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
296 |
<tr>
|
| 297 |
</tr>
|
297 |
<td colspan="6" background="images/bg_table_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 298 |
<%End If%>
|
298 |
</tr>
|
| 299 |
|
299 |
<%End If%>
|
| 300 |
<%
|
300 |
|
| 301 |
WEnd
|
301 |
<%
|
| 302 |
|
302 |
WEnd
|
| 303 |
OraDatabase.Parameters.Remove "OS_ID"
|
303 |
|
| 304 |
%>
|
304 |
OraDatabase.Parameters.Remove "OS_ID"
|
| 305 |
<tr>
|
305 |
%>
|
| 306 |
<td colspan="6" background="images/bg_table_border.gif">
|
306 |
<tr>
|
| 307 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
307 |
<td colspan="6" background="images/bg_table_border.gif">
|
| 308 |
<tr>
|
308 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 309 |
<td nowrap background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
309 |
<tr>
|
| 310 |
</tr>
|
310 |
<td nowrap background="images/bg_table_col.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 311 |
</table>
|
311 |
</tr>
|
| 312 |
</td>
|
312 |
</table>
|
| 313 |
</tr>
|
313 |
</td>
|
| 314 |
</table>
|
314 |
</tr>
|
| 315 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
315 |
</table>
|
| 316 |
</td>
|
316 |
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 317 |
</tr>
|
317 |
</td>
|
| 318 |
<%=objPMod.ComposeHiddenTags()%>
|
318 |
</tr>
|
| 319 |
|
319 |
<%=objPMod.ComposeHiddenTags()%>
|
| 320 |
<input type="hidden" name="action" value="true">
|
320 |
|
| 321 |
</form>
|
321 |
<input type="hidden" name="action" value="true">
|
| 322 |
</table>
|
322 |
</form>
|
| 323 |
</td>
|
323 |
</table>
|
| 324 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
324 |
</td>
|
| 325 |
<!-- PERSONAL BAR +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
325 |
<td width="1%" valign="top" background="images/bg_favourits.gif">
|
| 326 |
<!--#include file="_personal_bar.asp"-->
|
326 |
<!-- PERSONAL BAR +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 327 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
327 |
<!--#include file="_personal_bar.asp"-->
|
| 328 |
</td>
|
328 |
<!-- END OF PERSONAL BAR ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 329 |
</tr>
|
329 |
</td>
|
| 330 |
<tr>
|
330 |
</tr>
|
| 331 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
331 |
<tr>
|
| 332 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
332 |
<td background="images/bg_bage_0a.gif"><img src="images/spacer.gif" width="1" height="15"></td>
|
| 333 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
333 |
<td background="images/bg_bage_1.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 334 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
334 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 335 |
</tr>
|
335 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 336 |
<tr>
|
336 |
</tr>
|
| 337 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
337 |
<tr>
|
| 338 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
338 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="20"></td>
|
| 339 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
339 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 340 |
<td bgcolor="#FFFFFF"> </td>
|
340 |
<td bgcolor="#FFFFFF"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 341 |
</tr>
|
341 |
<td bgcolor="#FFFFFF"> </td>
|
| 342 |
</table>
|
342 |
</tr>
|
| 343 |
<!-- FOOTER ++++++++++++++++ -->
|
343 |
</table>
|
| 344 |
<!--#include file="_footer.asp"-->
|
344 |
<!-- FOOTER ++++++++++++++++ -->
|
| 345 |
<!-- +++++++++++++++++++++++ -->
|
345 |
<!--#include file="_footer.asp"-->
|
| 346 |
</body>
|
346 |
<!-- +++++++++++++++++++++++ -->
|
| 347 |
</html>
|
347 |
</body>
|
| 348 |
<%
|
348 |
</html>
|
| 349 |
'------------ RUN AFTER PAGE RENDER -----------
|
349 |
<%
|
| 350 |
Set objPMod = Nothing
|
350 |
'------------ RUN AFTER PAGE RENDER -----------
|
| 351 |
Set objCrumbs = Nothing
|
351 |
Set objPMod = Nothing
|
| 352 |
Set objTabControl = Nothing
|
352 |
Set objCrumbs = Nothing
|
| 353 |
Set objBtnControl = Nothing
|
353 |
Set objTabControl = Nothing
|
| 354 |
'----------------------------------------------
|
354 |
Set objBtnControl = Nothing
|
| - |
|
355 |
'----------------------------------------------
|
| 355 |
%><!--#include file="common/globals_destructor.asp"-->
|
356 |
%><!--#include file="common/globals_destructor.asp"-->
|
| 356 |
|
357 |
|