| 119 |
ghuddy |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
| 157 |
ghuddy |
5 |
'| Edit Release |
|
| 119 |
ghuddy |
6 |
'| |
|
|
|
7 |
'=====================================================
|
|
|
8 |
%>
|
|
|
9 |
<%
|
|
|
10 |
Option explicit
|
|
|
11 |
' Good idea to set when using redirect
|
| 157 |
ghuddy |
12 |
Response.Expires = 0 ' always load the page, dont store
|
| 119 |
ghuddy |
13 |
%>
|
|
|
14 |
<!--#include file="common/conf.asp"-->
|
|
|
15 |
<!--#include file="common/globals.asp"-->
|
|
|
16 |
<!--#include file="common/formating.asp"-->
|
|
|
17 |
<!--#include file="common/qstr.asp"-->
|
|
|
18 |
<!--#include file="common/common_subs.asp"-->
|
|
|
19 |
<!--#include file="common/_form_window_common.asp"-->
|
|
|
20 |
<%
|
|
|
21 |
' Set rfile parameter. This is a return page after Login
|
|
|
22 |
Call objPMod.StoreParameter ( "rfile", "rtree.asp" )
|
|
|
23 |
'------------ ACCESS CONTROL ------------------
|
|
|
24 |
%>
|
|
|
25 |
<!--#include file="_access_control_login.asp"-->
|
|
|
26 |
<!--#include file="_access_control_general.asp"-->
|
|
|
27 |
<!--#include file="_access_control_project.asp"-->
|
|
|
28 |
<%
|
|
|
29 |
'------------ Variable Definition -------------
|
|
|
30 |
Dim objSortHelper
|
|
|
31 |
Dim rsQry
|
| 4955 |
dpurdie |
32 |
Dim State
|
| 5061 |
dpurdie |
33 |
Dim ctrlDisabled, bCanEdit
|
| 4955 |
dpurdie |
34 |
Dim returnUrl
|
| 157 |
ghuddy |
35 |
|
| 119 |
ghuddy |
36 |
'------------ Constants Declaration -----------
|
|
|
37 |
'------------ Variable Init -------------------
|
| 5061 |
dpurdie |
38 |
If canActionControlInProject("CreateNewRelease") or canActionControlInProject("ConfigureRelease") Then
|
|
|
39 |
ctrlDisabled = ""
|
|
|
40 |
bCanEdit = TRUE
|
|
|
41 |
Else
|
| 157 |
ghuddy |
42 |
ctrlDisabled = "disabled"
|
| 5061 |
dpurdie |
43 |
bCanEdit = FALSE
|
| 157 |
ghuddy |
44 |
End If
|
|
|
45 |
|
| 4955 |
dpurdie |
46 |
' Maintain the page to goto after we process this one
|
|
|
47 |
' Go back from whence we came
|
|
|
48 |
' Grab the referre on the first call so that postback does not confuse us
|
|
|
49 |
returnUrl = Request("returnUrl")
|
|
|
50 |
If returnUrl = "" Then
|
|
|
51 |
returnUrl = Request.ServerVariables ("HTTP_REFERER")
|
| 5177 |
dpurdie |
52 |
|
|
|
53 |
' It MUST have an rtag id
|
|
|
54 |
If InStr(returnUrl,"rtag_id") = 0 Then
|
|
|
55 |
Dim joiner : joiner = "?"
|
|
|
56 |
If InStr(returnUrl,"?") <> 0 Then joiner = "&"
|
|
|
57 |
returnUrl = returnUrl & joiner & "rtag_id=" & Request("rtag_id")
|
|
|
58 |
End If
|
| 4955 |
dpurdie |
59 |
End If
|
| 5177 |
dpurdie |
60 |
rmDebug = returnUrl
|
| 119 |
ghuddy |
61 |
'----------------------------------------------
|
|
|
62 |
%>
|
|
|
63 |
<%
|
|
|
64 |
'--------------------------------------------------------------------------------------------------------------------------
|
|
|
65 |
Sub GetFormDetails ( nRtagId, ByRef outobjDetails )
|
| 157 |
ghuddy |
66 |
Dim rsQry, query
|
|
|
67 |
|
|
|
68 |
OraDatabase.Parameters.Add "RTAG_ID", nRtagId, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
69 |
|
|
|
70 |
query = _
|
|
|
71 |
" SELECT rt.* "&_
|
| 4955 |
dpurdie |
72 |
" FROM RELEASE_TAGS rt"&_
|
|
|
73 |
" WHERE rt.RTAG_ID = :RTAG_ID"
|
| 157 |
ghuddy |
74 |
|
|
|
75 |
Set rsQry = OraDatabase.DbCreateDynaset( query, ORADYN_DEFAULT )
|
|
|
76 |
|
|
|
77 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
|
|
78 |
|
|
|
79 |
If rsQry.RecordCount > 0 Then
|
|
|
80 |
outobjDetails.Item ("rtag_id") = rsQry("rtag_id")
|
| 4955 |
dpurdie |
81 |
outobjDetails.Item ("proj_id") = rsQry("proj_id")
|
| 157 |
ghuddy |
82 |
outobjDetails.Item ("rtag_name") = rsQry("rtag_name")
|
|
|
83 |
outobjDetails.Item ("description") = rsQry("description")
|
|
|
84 |
outobjDetails.Item ("parent_rtag_id") = rsQry("parent_rtag_id")
|
|
|
85 |
outobjDetails.Item ("config_spec_branch") = rsQry("config_spec_branch")
|
|
|
86 |
outobjDetails.Item ("owner_email") = rsQry("owner_email")
|
|
|
87 |
outobjDetails.Item ("product_state_used") = rsQry("product_state_used")
|
| 4867 |
dpurdie |
88 |
outobjDetails.Item ("build_age") = rsQry("build_age")
|
| 157 |
ghuddy |
89 |
If rsQry("assoc_mass_ref") <> "" Then
|
|
|
90 |
outobjDetails.Item ("massref_rtag_id") = rsQry("assoc_mass_ref")
|
|
|
91 |
End If
|
|
|
92 |
Else
|
|
|
93 |
Err.Raise 8, "Sub GetFormDetails in "& ScriptName, "Empty record set returned. nRtagId="& nRtagId
|
|
|
94 |
|
|
|
95 |
End If
|
|
|
96 |
|
|
|
97 |
rsQry.Close
|
|
|
98 |
Set rsQry = Nothing
|
| 119 |
ghuddy |
99 |
End Sub
|
|
|
100 |
'--------------------------------------------------------------------------------------------------------------------------
|
|
|
101 |
Sub UpdateReleaseDetails ()
|
| 157 |
ghuddy |
102 |
On Error Resume Next
|
|
|
103 |
|
|
|
104 |
If request("product_state_used") = "on" Then
|
|
|
105 |
State = "Y"
|
|
|
106 |
Else
|
|
|
107 |
State = NULL
|
|
|
108 |
End If
|
|
|
109 |
|
| 5061 |
dpurdie |
110 |
OraDatabase.Parameters.Add "RTAG_ID", Request("rtag_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 4867 |
dpurdie |
111 |
OraDatabase.Parameters.Add "RTAG_NAME", Request("rtag_name"), ORAPARM_INPUT, ORATYPE_VARCHAR2
|
|
|
112 |
OraDatabase.Parameters.Add "RTAG_DESCRIPTION", Request("rtag_description"), ORAPARM_INPUT, ORATYPE_VARCHAR2
|
|
|
113 |
OraDatabase.Parameters.Add "CONFIG_SPEC_BRANCH", Request("config_spec_branch"), ORAPARM_INPUT, ORATYPE_VARCHAR2
|
|
|
114 |
OraDatabase.Parameters.Add "OWNER_EMAIL", Request("owner_email"), ORAPARM_INPUT, ORATYPE_VARCHAR2
|
|
|
115 |
OraDatabase.Parameters.Add "USER_ID", objAccessControl.UserId, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
116 |
OraDatabase.Parameters.Add "PARENT_RTAG_ID", Request("parent_rtag_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
117 |
OraDatabase.Parameters.Add "MASSREF_RTAG_ID", Request("massref_rtag_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
118 |
OraDatabase.Parameters.Add "STATE", State, ORAPARM_INPUT, ORATYPE_VARCHAR
|
|
|
119 |
OraDatabase.Parameters.Add "BUILD_AGE", Request("build_age"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 157 |
ghuddy |
120 |
|
|
|
121 |
objEH.TryORA ( OraSession )
|
|
|
122 |
|
|
|
123 |
OraDatabase.ExecuteSQL _
|
| 4867 |
dpurdie |
124 |
"BEGIN PK_RELEASE.UPDATE_RELEASE ( :RTAG_ID, :RTAG_NAME, :RTAG_DESCRIPTION, :PARENT_RTAG_ID, :MASSREF_RTAG_ID, :CONFIG_SPEC_BRANCH, :OWNER_EMAIL, :USER_ID, :STATE, :BUILD_AGE ); END;"
|
| 157 |
ghuddy |
125 |
|
|
|
126 |
objEH.CatchORA ( OraSession )
|
|
|
127 |
|
|
|
128 |
OraDatabase.Parameters.Remove "RTAG_ID"
|
|
|
129 |
OraDatabase.Parameters.Remove "RTAG_NAME"
|
|
|
130 |
OraDatabase.Parameters.Remove "RTAG_DESCRIPTION"
|
|
|
131 |
OraDatabase.Parameters.Remove "CONFIG_SPEC_BRANCH"
|
|
|
132 |
OraDatabase.Parameters.Remove "OWNER_EMAIL"
|
|
|
133 |
OraDatabase.Parameters.Remove "USER_ID"
|
|
|
134 |
OraDatabase.Parameters.Remove "PARENT_RTAG_ID"
|
|
|
135 |
OraDatabase.Parameters.Remove "MASSREF_RTAG_ID"
|
|
|
136 |
OraDatabase.Parameters.Remove "STATE"
|
| 4867 |
dpurdie |
137 |
OraDatabase.Parameters.Remove "BUILD_AGE"
|
| 157 |
ghuddy |
138 |
|
| 119 |
ghuddy |
139 |
End Sub
|
|
|
140 |
'--------------------------------------------------------------------------------------------------------------------------
|
|
|
141 |
%>
|
|
|
142 |
<%
|
|
|
143 |
'------------ RUN BEFORE PAGE RENDER ----------
|
|
|
144 |
' --- Get Form details from DB ---
|
| 5061 |
dpurdie |
145 |
Call GetFormDetails ( Request("rtag_id"), objFormCollector )
|
| 119 |
ghuddy |
146 |
|
|
|
147 |
' --- Load Validation Rules ---
|
| 157 |
ghuddy |
148 |
Call objForm.LoadValidationRules ( Array("rtag_name","rtag_description", "config_spec_branch"), OraDatabase ) ' Load Validation Rules
|
| 119 |
ghuddy |
149 |
|
|
|
150 |
' --- Enter Form Validation Rule Changes here... ----
|
|
|
151 |
'----------------------------------------------------
|
|
|
152 |
|
|
|
153 |
' --- RUN onPostBack ---
|
|
|
154 |
If Request("action") <> "" Then
|
| 157 |
ghuddy |
155 |
If objForm.IsValidOnPostBack Then
|
|
|
156 |
' --- Form is Valid ---
|
| 5061 |
dpurdie |
157 |
If bCanEdit Then
|
| 157 |
ghuddy |
158 |
Call UpdateReleaseDetails()
|
|
|
159 |
If objEH.Finally Then
|
| 4955 |
dpurdie |
160 |
Call OpenInWindow ( returnUrl )
|
| 157 |
ghuddy |
161 |
End If
|
|
|
162 |
Else
|
| 4955 |
dpurdie |
163 |
Call OpenInWindow ( returnUrl )
|
| 157 |
ghuddy |
164 |
End If
|
|
|
165 |
End If
|
| 119 |
ghuddy |
166 |
End If
|
|
|
167 |
|
|
|
168 |
'----------------------------------------------
|
|
|
169 |
%>
|
|
|
170 |
|
|
|
171 |
<html>
|
|
|
172 |
<head>
|
|
|
173 |
<title>Release Manager</title>
|
|
|
174 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
175 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
176 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
|
|
177 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
|
|
178 |
<script language="JavaScript" src="images/common.js"></script>
|
|
|
179 |
|
|
|
180 |
<!-- DROPDOWN MENUS -->
|
|
|
181 |
<!--#include file="_menu_def.asp"-->
|
|
|
182 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
|
|
183 |
|
|
|
184 |
</head>
|
|
|
185 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onLoad="FormName.rtag_name.focus();">
|
|
|
186 |
<!-- MENU LAYERS -------------------------------------->
|
| 157 |
ghuddy |
187 |
<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off');dynamichide(event)">
|
| 119 |
ghuddy |
188 |
</div>
|
|
|
189 |
<!-- TIPS LAYERS -------------------------------------->
|
|
|
190 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
|
|
191 |
<!----------------------------------------------------->
|
|
|
192 |
<!-- HEADER -->
|
|
|
193 |
<!--#include file="_header.asp"-->
|
|
|
194 |
<!-- BODY ---->
|
|
|
195 |
|
|
|
196 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 157 |
ghuddy |
197 |
<%
|
|
|
198 |
'-- FROM START ---------------------------------------------------------------------------------------------------------
|
|
|
199 |
objFormComponent.FormName = "FormName"
|
|
|
200 |
objFormComponent.Action = ScriptName
|
| 5061 |
dpurdie |
201 |
If NOT bCanEdit Then
|
| 157 |
ghuddy |
202 |
objFormComponent.IsReadonlyAction = enumDB_YES
|
|
|
203 |
End If
|
|
|
204 |
Call objFormComponent.FormStart()
|
|
|
205 |
%>
|
|
|
206 |
<tr>
|
|
|
207 |
<td width="1" background="images/bg_home_orange.gif" valign="top"></td>
|
|
|
208 |
<td width="100%" rowspan="2" align="center" valign="top" bgcolor="#EEEFEF">
|
|
|
209 |
<table width="10" border="0" cellspacing="0" cellpadding="0">
|
| 119 |
ghuddy |
210 |
<tr>
|
| 157 |
ghuddy |
211 |
<td width="1%"></td>
|
|
|
212 |
<td width="100%">
|
|
|
213 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
214 |
<tr>
|
| 5061 |
dpurdie |
215 |
<%If bCanEdit Then%>
|
| 157 |
ghuddy |
216 |
<td nowrap class="form_ttl">EDIT RELEASE DETAILS </td>
|
|
|
217 |
<%Else%>
|
|
|
218 |
<td nowrap class="form_ttl">VIEW RELEASE DETAILS </td>
|
|
|
219 |
<%End If%>
|
|
|
220 |
<td align="right" valign="bottom"></td>
|
|
|
221 |
</tr>
|
|
|
222 |
</table>
|
|
|
223 |
</td>
|
|
|
224 |
<td width="1%"></td>
|
| 119 |
ghuddy |
225 |
</tr>
|
| 157 |
ghuddy |
226 |
<tr>
|
|
|
227 |
<td align="left" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tl_cnr_b.gif" width="13" height="13"></td>
|
|
|
228 |
<td background="images/lbox_bg_blue.gif" class="lbox_ttl_w"><img src="images/h_trsp_dot.gif" width="600" height="15"></td>
|
|
|
229 |
<td align="right" valign="top" background="images/lbox_bg_blue.gif"><img src="images/lbox_tr_cnr_b.gif" width="13" height="13"></td>
|
|
|
230 |
</tr>
|
|
|
231 |
<tr>
|
|
|
232 |
<td bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
|
|
|
233 |
<td bgcolor="#FFFFFF" valign="top">
|
|
|
234 |
<!-- MESSAGE +++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
235 |
<!--#include file="messages/_msg_inline.asp"-->
|
|
|
236 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
|
237 |
<br>
|
|
|
238 |
<table width="100%" border="0" cellspacing="2" cellpadding="0">
|
|
|
239 |
<tr>
|
|
|
240 |
<td width="19%" valign="top" nowrap class="form_iname">Release Name </td>
|
|
|
241 |
<td width="72%" valign="top" nowrap>
|
|
|
242 |
<%=objFormComponent.TextBox ( "rtag_name", objForm.GetValue( "rtag_name", objFormCollector.Item("rtag_name") ), "class='form_ivalue' size='60'" )%>
|
|
|
243 |
</td>
|
|
|
244 |
<td width="9%" valign="top"><%=objForm.Validate ("rtag_name")%></td>
|
|
|
245 |
</tr>
|
|
|
246 |
<tr>
|
|
|
247 |
<td nowrap class="form_iname" valign="top">Parent Release </td>
|
|
|
248 |
<td valign="top" nowrap class="form_iname">
|
|
|
249 |
<%
|
| 4955 |
dpurdie |
250 |
OraDatabase.Parameters.Add "PROJ_ID", objFormCollector.Item("proj_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
| 119 |
ghuddy |
251 |
|
| 157 |
ghuddy |
252 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ReleaseVersionTree.sql") , ORADYN_DEFAULT )
|
| 119 |
ghuddy |
253 |
|
| 157 |
ghuddy |
254 |
OraDatabase.Parameters.Remove "PROJ_ID"
|
|
|
255 |
%>
|
|
|
256 |
<select name="parent_rtag_id" class="form_item" <%=ctrlDisabled%>>
|
|
|
257 |
<option value="<%=objFormCollector.Item("rtag_id")%>">---ROOT---</option>
|
|
|
258 |
<%While (NOT rsQry.BOF) AND (NOT rsQry.EOF)%>
|
|
|
259 |
<option value="<%=rsQry("rtag_id")%>" <%If ( CInt( rsQry("rtag_id") ) = CInt(objFormCollector.Item("parent_rtag_id")) ) Then%>selected<%End If%>><%=rsQry("rtag_name")%></option>
|
|
|
260 |
<%
|
|
|
261 |
rsQry.MoveNext
|
|
|
262 |
WEnd%>
|
|
|
263 |
</select>
|
|
|
264 |
</td>
|
|
|
265 |
<td valign="top"></td>
|
|
|
266 |
</tr>
|
|
|
267 |
<tr>
|
|
|
268 |
<td valign="top" nowrap class="form_iname">Comments</td>
|
|
|
269 |
<td valign="top"><%=objFormComponent.TextArea ( "rtag_description", objForm.GetValue( "rtag_description", objFormCollector.Item("description") ), 10, 60, "class='form_ivalue'" )%></td>
|
|
|
270 |
<td valign="top"><%=objForm.Validate ("rtag_description")%></td>
|
|
|
271 |
</tr>
|
|
|
272 |
<tr>
|
|
|
273 |
<td width="19%" valign="top" nowrap class="form_iname">Clearcase Support Profile Branch</td>
|
|
|
274 |
|
|
|
275 |
<td width="72%" valign="top" nowrap><%=objFormComponent.TextBox ( "config_spec_branch", objForm.GetValue( "config_spec_branch", objFormCollector.Item("config_spec_branch") ), "class='form_ivalue' size='60'" )%></td>
|
|
|
276 |
<td width="9%" valign="top"><%=objForm.Validate ("config_spec_branch")%></td>
|
|
|
277 |
</tr>
|
|
|
278 |
<tr>
|
|
|
279 |
<td width="19%" valign="top" nowrap class="form_iname">Autobuild Notification Emails</td>
|
|
|
280 |
|
|
|
281 |
<td width="72%" valign="top" nowrap><%=objFormComponent.TextBox ( "owner_email", objForm.GetValue( "owner_email", objFormCollector.Item("owner_email") ), "class='form_ivalue' size='60'" )%></td>
|
|
|
282 |
<td width="9%" valign="top"></td>
|
|
|
283 |
</tr>
|
|
|
284 |
<tr>
|
| 4955 |
dpurdie |
285 |
<%If objFormCollector.Item("proj_id") <> 2 Then%>
|
| 157 |
ghuddy |
286 |
<td nowrap class="form_iname" valign="top">Associated MASS REF </td>
|
|
|
287 |
<td valign="top" nowrap class="form_iname">
|
|
|
288 |
<%
|
|
|
289 |
OraDatabase.Parameters.Add "PROJ_ID", 2, ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
290 |
|
|
|
291 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("ReleaseVersionTree.sql") , ORADYN_DEFAULT )
|
|
|
292 |
|
|
|
293 |
OraDatabase.Parameters.Remove "PROJ_ID"
|
|
|
294 |
%>
|
|
|
295 |
<select name="massref_rtag_id" class="form_item" <%=ctrlDisabled%>>
|
|
|
296 |
<option value="">---None---</option>
|
|
|
297 |
<%While (NOT rsQry.BOF) AND (NOT rsQry.EOF)%>
|
|
|
298 |
<option value="<%=rsQry("rtag_id")%>" <%If ( CInt( rsQry("rtag_id") ) = CInt(objFormCollector.Item("massref_rtag_id")) ) Then%>selected<%End If%>><%=rsQry("rtag_name")%></option>
|
|
|
299 |
<%
|
|
|
300 |
rsQry.MoveNext
|
|
|
301 |
WEnd%>
|
|
|
302 |
</select>
|
|
|
303 |
</td>
|
|
|
304 |
<td valign="top"></td>
|
|
|
305 |
<%End If%>
|
|
|
306 |
</tr>
|
|
|
307 |
<tr>
|
|
|
308 |
<td width="19%" valign="top" nowrap class="form_iname">Configured To Use Product States</td>
|
|
|
309 |
<%If IsNull(objFormCollector.Item("product_state_used")) Then%>
|
|
|
310 |
<td valign="top"><input type="checkbox" name="product_state_used" <%=ctrlDisabled%>></td>
|
|
|
311 |
<%Else%>
|
|
|
312 |
<td valign="top"><input type="checkbox" name="product_state_used" checked <%=ctrlDisabled%>></td>
|
|
|
313 |
<%End If%>
|
|
|
314 |
<td width="9%" valign="top"></td>
|
|
|
315 |
</tr>
|
| 4867 |
dpurdie |
316 |
|
| 157 |
ghuddy |
317 |
<tr>
|
| 4867 |
dpurdie |
318 |
<td width="19%" valign="top" nowrap class="form_iname">Build Age before warning</td>
|
|
|
319 |
|
|
|
320 |
<td width="72%" valign="top" nowrap><%=objFormComponent.TextBox ( "build_age", objForm.GetValue( "build_age", objFormCollector.Item("build_age") ), "class='form_ivalue' size='5'" )%></td>
|
|
|
321 |
<td width="9%" valign="top"></td>
|
|
|
322 |
|
|
|
323 |
</tr>
|
|
|
324 |
|
|
|
325 |
|
|
|
326 |
<tr>
|
| 157 |
ghuddy |
327 |
<td class="form_iname"> </td>
|
|
|
328 |
<td> </td>
|
|
|
329 |
<td class="val_err"></td>
|
|
|
330 |
</tr>
|
|
|
331 |
</table>
|
|
|
332 |
</td>
|
|
|
333 |
<td background="images/lbox_bgside_white.gif"> </td>
|
|
|
334 |
</tr>
|
|
|
335 |
|
|
|
336 |
<tr>
|
|
|
337 |
<td background="images/bg_action_norm.gif" ></td>
|
|
|
338 |
<td align="right" background="images/bg_action_norm.gif" >
|
| 5061 |
dpurdie |
339 |
<%If bCanEdit Then%>
|
| 157 |
ghuddy |
340 |
<%=objFormComponent.SubmitButton ( "Submit", "class='form_btn'" )%>
|
|
|
341 |
<%End If%>
|
| 4955 |
dpurdie |
342 |
<%=objFormComponent.CancelButton ( "Cancel", "class='form_btn'", returnUrl )%>
|
| 157 |
ghuddy |
343 |
<%=objPMod.ComposeHiddenTags()%>
|
| 4955 |
dpurdie |
344 |
<input type="hidden" name="returnUrl" value="<%=returnUrl%>">
|
| 157 |
ghuddy |
345 |
<input type="hidden" name="action" value="true">
|
|
|
346 |
</td>
|
|
|
347 |
<td background="images/bg_action_norm.gif" ><img src="images/h_trsp_dot.gif" width="5" height="30"></td>
|
|
|
348 |
</tr>
|
|
|
349 |
<tr>
|
|
|
350 |
<td background="images/lbox_bg_blue.gif" valign="bottom"><img src="images/lbox_bl_cnr_b.gif" width="13" height="13"></td>
|
|
|
351 |
<td background="images/lbox_bg_blue.gif"></td>
|
|
|
352 |
<td background="images/lbox_bg_blue.gif" valign="bottom" align="right"><img src="images/lbox_br_cnr_b.gif" width="13" height="13"></td>
|
|
|
353 |
</tr>
|
|
|
354 |
</table>
|
|
|
355 |
|
|
|
356 |
<!-- ACTION BUTTONS ---------------------------------------------->
|
|
|
357 |
<!-- ACTION BUTTONS END ------------------------------------------>
|
|
|
358 |
</td>
|
|
|
359 |
<td width="1" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
|
|
|
360 |
</tr>
|
|
|
361 |
<tr>
|
|
|
362 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"><img src="images/img_vtree.gif" width="86" height="99" vspace="20" hspace="30"></td>
|
|
|
363 |
<td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
|
|
|
364 |
</tr>
|
|
|
365 |
<%
|
|
|
366 |
Call objFormComponent.FormEnd()
|
|
|
367 |
'-- FROM END ----------------------------------------------------------------------------------------------------------------
|
|
|
368 |
%>
|
| 119 |
ghuddy |
369 |
</table>
|
|
|
370 |
|
|
|
371 |
|
|
|
372 |
<!-- FOOTER -->
|
|
|
373 |
<!--#include file="_footer.asp"-->
|
|
|
374 |
</body>
|
|
|
375 |
</html>
|
|
|
376 |
<%
|
|
|
377 |
Call Destroy_All_Objects
|
| 157 |
ghuddy |
378 |
%>
|