| Line 39... |
Line 39... |
| 39 |
<head>
|
39 |
<head>
|
| 40 |
<title>Access Manager</title>
|
40 |
<title>Access Manager</title>
|
| 41 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
41 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
| 42 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
42 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 43 |
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
|
43 |
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
|
| - |
|
44 |
<script language="JavaScript" src="scripts/common.js"></script>
|
| 44 |
</head>
|
45 |
</head>
|
| 45 |
|
46 |
|
| 46 |
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
|
47 |
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
|
| 47 |
<!-- HEADER ++++++++++++++++++++++ -->
|
48 |
<!-- HEADER ++++++++++++++++++++++ -->
|
| 48 |
<!--#include file="_header.asp"-->
|
49 |
<!--#include file="_header.asp"-->
|
| Line 54... |
Line 55... |
| 54 |
<!--#include file="_treeNavigator.asp"-->
|
55 |
<!--#include file="_treeNavigator.asp"-->
|
| 55 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
56 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 56 |
</td>
|
57 |
</td>
|
| 57 |
<td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
58 |
<td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="600"></td>
|
| 58 |
<td width="100%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="9">
|
59 |
<td width="100%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="9">
|
| - |
|
60 |
<form name="FormName" method="post" action="<%=SCRIPT_NAME%>">
|
| 59 |
<tr>
|
61 |
<tr>
|
| 60 |
<td background="images/bg_drk_bage_pane.gif">
|
62 |
<td background="images/bg_drk_bage_pane.gif">
|
| 61 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
63 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 62 |
<tr>
|
64 |
<tr>
|
| 63 |
<td nowrap class="body_txt">
|
65 |
<td nowrap class="body_txt">
|
| 64 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
66 |
<!-- BUTTONS CONTROL +++++++++++++++++++ -->
|
| - |
|
67 |
<%
|
| - |
|
68 |
'-- Define Action buttons on this tab
|
| - |
|
69 |
aTabBtnsDef = Array("btnAddApplicationUser", "btnSubApplicationUser")
|
| - |
|
70 |
|
| - |
|
71 |
Call LoadTabActionButtons ( aTabBtnsDef, objBtnControl )
|
| - |
|
72 |
|
| - |
|
73 |
objBtnControl.Render( aTabBtnsDef )
|
| - |
|
74 |
%>
|
| 65 |
<!-- +++++++++++++++++++++++++++++++++++ -->
|
75 |
<!-- +++++++++++++++++++++++++++++++++++ -->
|
| 66 |
</td>
|
76 |
</td>
|
| 67 |
<td align="right" nowrap class="section_ttl"><%=PARENT_TITLE%></td>
|
77 |
<td align="right" nowrap class="section_ttl"><%=PARENT_TITLE%></td>
|
| 68 |
</tr>
|
78 |
</tr>
|
| 69 |
</table>
|
79 |
</table>
|
| Line 111... |
Line 121... |
| 111 |
|
121 |
|
| 112 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("UserApplications.sql"), ORADYN_DEFAULT )
|
122 |
Set rsQry = OraDatabase.DbCreateDynaset( GetQuery ("UserApplications.sql"), ORADYN_DEFAULT )
|
| 113 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
123 |
While (NOT rsQry.BOF) AND (NOT rsQry.EOF)
|
| 114 |
%>
|
124 |
%>
|
| 115 |
<tr>
|
125 |
<tr>
|
| 116 |
<td align="center"><input type="checkbox" name="app_id_list" value="<%=rsQry("app_id")%>" disabled></td>
|
126 |
<td align="center"><input type="checkbox" name="app_id" value="<%=rsQry("app_id")%>" disabled></td>
|
| 117 |
<td nowrap class="body_row"><a href="Application_Default.asp?app_id=<%=rsQry("app_id")%>&tree=1_<%=rsQry("app_id")%>" class="body_link" title="See Application Details"><%=IMG_DISK & rsQry("application_name")%></a></td>
|
127 |
<td nowrap class="body_row"><a href="Application_Default.asp?app_id=<%=rsQry("app_id")%>&tree=1_<%=rsQry("app_id")%>" class="body_link" title="See Application Details"><%=IMG_DISK & rsQry("application_name")%></a></td>
|
| 118 |
<td></td>
|
128 |
<td></td>
|
| 119 |
</tr>
|
129 |
</tr>
|
| 120 |
<%rsQry.MoveNext%>
|
130 |
<%rsQry.MoveNext%>
|
| 121 |
|
131 |
|
| Line 126... |
Line 136... |
| 126 |
<%End If%>
|
136 |
<%End If%>
|
| 127 |
|
137 |
|
| 128 |
<%
|
138 |
<%
|
| 129 |
WEnd
|
139 |
WEnd
|
| 130 |
|
140 |
|
| 131 |
OraDatabase.Parameters.Remove "APP_ID"
|
141 |
OraDatabase.Parameters.Remove "USER_ID"
|
| 132 |
%>
|
142 |
%>
|
| 133 |
<tr>
|
143 |
<tr>
|
| 134 |
<td colspan="3" background="images/bg_table_border.gif">
|
144 |
<td colspan="3" background="images/bg_table_border.gif">
|
| 135 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
145 |
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
| 136 |
<tr>
|
146 |
<tr>
|
| Line 155... |
Line 165... |
| 155 |
</tr>
|
165 |
</tr>
|
| 156 |
</table>
|
166 |
</table>
|
| 157 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
167 |
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
| 158 |
<br></td>
|
168 |
<br></td>
|
| 159 |
</tr>
|
169 |
</tr>
|
| - |
|
170 |
<%=objPMod.ComposeHiddenTags()%>
|
| - |
|
171 |
<input type="hidden" name="action" value="true">
|
| - |
|
172 |
</form>
|
| 160 |
</table></td>
|
173 |
</table></td>
|
| 161 |
</tr>
|
174 |
</tr>
|
| 162 |
</table>
|
175 |
</table>
|
| 163 |
<!-- FOOTER ++++++++++++++++++++++ -->
|
176 |
<!-- FOOTER ++++++++++++++++++++++ -->
|
| 164 |
<!--#include file="_footer.asp"-->
|
177 |
<!--#include file="_footer.asp"-->
|