Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
2 rsolanki 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|			          Control General				 |
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="common/_control_common.asp"-->
17
<%
18
'------------ ACCESS CONTROL ------------------
19
%>
20
<!--#include file="_access_control_general.asp"-->
21
<%
22
'------------ VARIABLE DEFINITION -------------
23
Dim sNode
24
Dim rsQry
25
'------------ CONSTANTS DECLARATION -----------
26
'------------ VARIABLE INIT -------------------
27
'------------ CONDITIONS ----------------------
28
'----------------------------------------------
29
%>
30
<%
31
'------------ RUN BEFORE PAGE RENDER ----------
32
Call GetControlDetails ( parObj_id, parApp_id, objObjCollector )
33
'----------------------------------------------
34
%>
35
<html>
36
<head>
37
<title>Access Manager</title>
38
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
39
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
40
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
41
</head>
42
 
43
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
44
<!-- HEADER ++++++++++++++++++++++ -->
45
<!--#include file="_header.asp"-->
46
<!-- +++++++++++++++++++++++++++++ -->
47
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
48
  <tr>
49
    <td width="1%" valign="top" background="images/bg_bage_pane.gif">
50
	<!-- TREE NAVIGATOR ++++++++++++++++++++++++++++++++++++++++++++ -->
51
	<!--#include file="_treeNavigator.asp"-->  
52
	<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
53
	</td>
54
    <td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="600"></td>
55
    <td width="100%" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="9">
56
      <tr>
57
        <td background="images/bg_drk_bage_pane.gif">
58
		  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
59
            <tr>
60
              <td nowrap class="body_txt"></td>
61
              <td align="right" nowrap class="section_ttl"><%=PARENT_TITLE%></td>
62
            </tr>
63
          </table>
64
		</td>
65
      </tr>
66
	  <tr>
67
        <td class="menu_crumbttl"><%Call RenderTitle ( objObjCollector )%></td>
68
      </tr>
69
      <tr>
70
        <td>
71
		 <!-- DETAILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
72
		 	<!-- TAB CONTROLS ++++++++++++++++++++++ -->
73
			<!--#include file="_tabs_definition.asp"-->
74
			<%
75
			Set objTabControl = New TabControl
76
			objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleMac/mac_style.html") ) ' Supply tab style definition
77
			objTabControl.TabStyle = "StyleMac"
78
			objTabControl.AddTabDefnition ( arrControl )
79
			objTabControl.SelectByName ( "General" )
80
			objTabControl.Render ()
81
			%>
82
			<!-- END OF TAB CONTROLS +++++++++++++++ -->
83
		 <table width="100%"  border="0" cellspacing="0" cellpadding="0">
84
          <tr>
85
            <td width="1" background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="500"></td>
86
            <td width="100%" valign="top">
87
			  <table width="100%"  border="0" cellspacing="10" cellpadding="0">
88
                <tr>
89
                  <td>
90
				  <!-- TAB DETAILS +++++++++++++++++++++++++++++ -->
91
				  <!-- +++++++++++++++++++++++++++++++++++++++++ -->
92
				  </td>
93
                </tr>
94
              </table>
95
			</td>
96
            <td width="1" background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
97
          </tr>
98
         </table>
99
         <table width="100%"  border="0" cellspacing="0" cellpadding="0">
100
           <tr>
101
             <td background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
102
           </tr>
103
         </table>
104
		 <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
105
         <br></td>
106
      </tr>
107
    </table></td>
108
  </tr>
109
</table>
110
<!-- FOOTER ++++++++++++++++++++++ -->
111
<!--#include file="_footer.asp"-->
112
<!-- +++++++++++++++++++++++++++++ -->
113
</body>
114
</html>
115
<%
116
'------------ RUN AFTER PAGE RENDER -----------
117
'----------------------------------------------
118
%>
119
<!--#include file="common/globals_destructor.asp"-->