Subversion Repositories DevTools

Rev

Rev 5512 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5354 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|			          Search Results				 |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
Response.Expires = 0
12
%>
13
<!--#include file="common/globals.asp"-->
14
<!--#include file="common/config.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="class/classPersistanceModule.asp"-->
17
<%
18
'------------ ACCESS CONTROL ------------------
19
%>
20
<!--#include file="_access_control_general.asp"-->
21
<%
22
'------------ VARIABLE DEFINITION -------------
23
Dim rsQry
24
'------------ CONSTANTS DECLARATION -----------
25
'------------ VARIABLE INIT -------------------
26
Set objPMod = New PersistanceModule
27
'------------ CONDITIONS ----------------------
28
'----------------------------------------------
29
%>
30
<%
31
'------------ RUN BEFORE PAGE RENDER ----------
32
objPMod.PersistInQryString ("app_id")
33
objPMod.PersistInQryString ("tree")
34
'----------------------------------------------
35
%>
36
<html>
37
<head>
38
<title>Access Manager</title>
39
<link rel="shortcut icon" href="<%=FavIcon%>"/>
40
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
41
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
42
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
6658 dpurdie 43
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
5354 dpurdie 44
</head>
45
 
46
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
47
<!-- HEADER ++++++++++++++++++++++ -->
48
<!--#include file="_header.asp"-->
49
<!-- +++++++++++++++++++++++++++++ -->
50
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
51
  <tr>
52
    <td width="1%" valign="top" background="images/bg_bage_pane.gif">
53
	<!-- TREE NAVIGATOR ++++++++++++++++++++++++++++++++++++++++++++ -->
54
	<!--#include file="_treeNavigator.asp"-->  
55
	<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
56
	</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="100%" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="9">
59
      <tr>
60
        <td background="images/bg_drk_bage_pane.gif">
61
		  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
62
            <tr>
63
              <td nowrap class="body_txt"></td>
64
              <td align="right" nowrap class="section_ttl">Applications</td>
65
            </tr>
66
          </table>
67
		</td>
68
      </tr>
69
	  <tr>
70
        <td class="menu_crumbttl"><strong>/CHILD_NAME</strong></td>
71
      </tr>
72
      <tr>
73
        <td>
74
		 <!-- DETAILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
75
 
76
		 <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
77
         <br></td>
78
      </tr>
79
    </table></td>
80
  </tr>
81
</table>
82
<!-- FOOTER ++++++++++++++++++++++ -->
83
<!--#include file="_footer.asp"-->
84
<!-- +++++++++++++++++++++++++++++ -->
85
</body>
86
</html>
87
<%
88
'------------ RUN AFTER PAGE RENDER -----------
89
'----------------------------------------------
90
%>
2 rsolanki 91
<!--#include file="common/globals_destructor.asp"-->