Subversion Repositories DevTools

Rev

Rev 6 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'|                                                   |
'|                    User General                   |
'|                                                   |
'=====================================================
%>
<%
Option explicit
Response.Expires = 0
%>
<!--#include file="common/globals.asp"-->
<!--#include file="common/config.asp"-->
<!--#include file="common/common_subs.asp"-->
<!--#include file="common/_user_common.asp"-->
<%
'------------ ACCESS CONTROL ------------------
%>
<!--#include file="_access_control_general.asp"-->
<%
'------------ VARIABLE DEFINITION -------------
Dim sNode
Dim rsQry
'------------ CONSTANTS DECLARATION -----------
'------------ VARIABLE INIT -------------------
'------------ CONDITIONS ----------------------
'----------------------------------------------
%>
<%
'------------ RUN BEFORE PAGE RENDER ----------
Call GetUserDetails ( parUser_id, objUserCollector )
'----------------------------------------------
%>
<html>
<head>
<title>Access Manager</title>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
</head>

<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<!-- HEADER ++++++++++++++++++++++ -->
<!--#include file="_header.asp"-->
<!-- +++++++++++++++++++++++++++++ -->
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
        <tr>
                <td width="1%" valign="top" background="images/bg_bage_pane.gif">
                <!-- TREE NAVIGATOR ++++++++++++++++++++++++++++++++++++++++++++ -->
                <!--#include file="_treeNavigator.asp"-->  
                <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
                </td>
                <td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="600"></td>
                <td width="100%" valign="top">
                        <table width="100%"  border="0" cellspacing="0" cellpadding="9">
                                <tr>
                                        <td background="images/bg_drk_bage_pane.gif">
                                                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                                                        <tr>
                                                                <td nowrap class="body_txt"></td>
                                                                <td align="right" nowrap class="section_ttl"><%=PARENT_TITLE%></td>
                                                        </tr>
                                                </table>
                                        </td>
                                </tr>
                                <tr>
                                        <td class="menu_crumbttl"><%Call RenderTitle ( objUserCollector )%></td>
                                </tr>
                                <tr>
                                        <td>
                                        <!-- DETAILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
                                        <!-- TAB CONTROLS ++++++++++++++++++++++ -->
                                        <!--#include file="_tabs_definition.asp"-->
                                        <%
                                        Set objTabControl = New TabControl
                                        objTabControl.TemplateDoc = ReadFile( Server.MapPath("controls/ERGTabStyleMac/mac_style.html") ) ' Supply tab style definition
                                        objTabControl.TabStyle = "StyleMac"
                                        objTabControl.AddTabDefnition ( arrUserAccount )
                                        objTabControl.SelectByName ( "General" )
                                        objTabControl.Render ()
                                        %>
                                        <!-- END OF TAB CONTROLS +++++++++++++++ -->
                                                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                                                        <tr>
                                                                <td width="1" background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="500"></td>
                                                                <td width="100%" valign="top">
                                                                        <table width="100%"  border="0" cellspacing="10" cellpadding="0">
                                                                                <tr>
                                                                                        <td>
                                                                                                <!-- TAB DETAILS +++++++++++++++++++++++++++++ -->
                                                                                                <table border="0" align="left" bordercolor="#666666" bgcolor="#FFFFFF">
                                                                                                        <tr>
                                                                                                                <td class="body_row">User ID: </td>
                                                                                                                <td class="body_col"><%=Response.Write(objUserCollector("user_id"))%></td>
                                                                                                        </tr>
                                                                                                        <tr>
                                                                                                                <td class="body_row">Full Name: </td>
                                                                                                                <td class="body_col"><%=Response.Write(objUserCollector("full_name"))%></td>
                                                                                                        </tr>
                                                                                                        <tr>
                                                                                                                <td class="body_row">User Name: </td>
                                                                                                                <td class="body_col"><%=Response.Write(objUserCollector("user_name"))%></td>
                                                                                                        </tr>
                                                                                                        <tr>
                                                                                                                <td class="body_row">Domain: </td>
                                                                                                                <td class="body_col"><%=Response.Write(objUserCollector("domain"))%></td>
                                                                                                        </tr>
                                                                                                        <tr>
                                                                                                                <td class="body_row">Email: </td>
                                                                                                                <td class="body_col"><%=Response.Write(objUserCollector("user_email"))%></td>
                                                                                                        </tr>
                                                                                                </table>
                                                                                        </td>
                                                                                </tr>
                                                                        </table>
                                                                </td>
                                                                <td width="1" background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                                                        </tr>
                                                </table>
                                                <table width="100%"  border="0" cellspacing="0" cellpadding="0">
                                                        <tr>
                                                                <td background="images/bg_gray_border.gif"><img src="images/spacer.gif" width="1" height="1"></td>
                                                        </tr>
                                                </table>
                                                <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
                                                <br>
                                        </td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>
<!-- FOOTER ++++++++++++++++++++++ -->
<!--#include file="_footer.asp"-->
<!-- +++++++++++++++++++++++++++++ -->
</body>
</html>
<%
'------------ RUN AFTER PAGE RENDER -----------
'----------------------------------------------
%>
<!--#include file="common/globals_destructor.asp"-->