Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5354 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|				          Default					 |
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
<%
17
'------------ ACCESS CONTROL ------------------
18
%>
19
<!--#include file="_access_control_general.asp"-->
20
<%
21
'------------ VARIABLE DEFINITION -------------
22
'------------ CONSTANTS DECLARATION -----------
23
'------------ VARIABLE INIT -------------------
24
'------------ CONDITIONS ----------------------
25
'----------------------------------------------
26
%>
27
<%
28
'------------ RUN BEFORE PAGE RENDER ----------
29
'----------------------------------------------
30
%>
31
<html>
32
<head>
33
<title>Access Manager</title>
34
<link rel="shortcut icon" href="<%=FavIcon%>"/>
35
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
36
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
37
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
38
</head>
39
 
40
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
41
<!-- HEADER ++++++++++++++++++++++ -->
42
<!--#include file="_header.asp"-->
43
<!-- +++++++++++++++++++++++++++++ -->
44
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
45
  <tr>
46
    <td width="1%" valign="top" background="images/bg_bage_pane.gif">
47
	<!-- TREE NAVIGATOR ++++++++++++++++++++++++++++++++++++++++++++ -->
48
	<!--#include file="_treeNavigator.asp"-->  
49
	<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
50
	</td>
51
    <td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="500"></td>
52
    <td width="100%" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="9">
53
      <tr>
54
        <td background="images/bg_drk_bage_pane.gif">
55
		  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
56
            <tr>
57
              <td nowrap>&nbsp;</td>
58
              <td align="right" nowrap class="section_ttl">Home</td>
59
            </tr>
60
          </table>
61
		</td>
62
      </tr>
63
      <tr>
64
        <td class="menu_crumbttl">&nbsp;</td>
65
      </tr>
66
      <tr>
67
        <td>
68
		 <!-- DETAILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
69
		 <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
70
         <br></td>
71
      </tr>
72
    </table></td>
73
  </tr>
74
</table>
75
<!-- FOOTER ++++++++++++++++++++++ -->
76
<!--#include file="_footer.asp"-->
77
<!-- +++++++++++++++++++++++++++++ -->
78
</body>
79
</html>
80
<%
81
'------------ RUN AFTER PAGE RENDER -----------
82
'----------------------------------------------
83
%>
2 rsolanki 84
<!--#include file="common/globals_destructor.asp"-->