| Line 1... |
Line 1... |
| 1 |
<%@LANGUAGE="VBSCRIPT"%>
|
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
| 2 |
<%
|
2 |
<%
|
| 3 |
'=====================================================
|
3 |
'=====================================================
|
| 4 |
'| |
|
4 |
'| |
|
| 5 |
'| PRINT REPORT |
|
5 |
'| PRINT REPORT |
|
| 6 |
'| |
|
6 |
'| |
|
| 7 |
'=====================================================
|
7 |
'=====================================================
|
| 8 |
%>
|
8 |
%>
|
| 9 |
<%
|
9 |
<%
|
| 10 |
Option explicit
|
10 |
Option explicit
|
| 11 |
Response.Expires = 0
|
11 |
Response.Expires = 0
|
| 12 |
%>
|
12 |
%>
|
| 13 |
<!--#include file="common/conf.asp"-->
|
13 |
<!--#include file="common/conf.asp"-->
|
| 14 |
<!--#include file="common/globals.asp"-->
|
14 |
<!--#include file="common/globals.asp"-->
|
| 15 |
<!--#include file="common/formating.asp"-->
|
15 |
<!--#include file="common/formating.asp"-->
|
| 16 |
<!--#include file="common/qstr.asp"-->
|
16 |
<!--#include file="common/qstr.asp"-->
|
| 17 |
<!--#include file="common/common_subs.asp"-->
|
17 |
<!--#include file="common/common_subs.asp"-->
|
| 18 |
<!--#include file="common/reports_def.asp"-->
|
18 |
<!--#include file="common/reports_def.asp"-->
|
| 19 |
<%
|
19 |
<%
|
| 20 |
'------------ VARIABLE DEFINITION -------------
|
20 |
'------------ VARIABLE DEFINITION -------------
|
| 21 |
Dim parRepNum
|
21 |
Dim parRepNum
|
| 22 |
Dim parGroup
|
22 |
Dim parGroup
|
| 23 |
Dim parPrint
|
23 |
Dim parPrint
|
| 24 |
Dim Section
|
24 |
Dim Section
|
| 25 |
'------------ CONSTANTS DECLARATION -----------
|
25 |
'------------ CONSTANTS DECLARATION -----------
|
| 26 |
Const img_Advanced_Search = "<img src='images/img_reports_adv_search.jpg' width='199' height='164'>"
|
26 |
Const img_Advanced_Search = "<img src='images/img_reports_adv_search.jpg' width='199' height='164'>"
|
| 27 |
Const img_Admin_Reports = "<img src='images/img_reports_admin.jpg' width='199' height='164'>"
|
27 |
Const img_Admin_Reports = "<img src='images/img_reports_admin.jpg' width='199' height='164'>"
|
| 28 |
Const img_Reports = "<img src='images/img_reports2.jpg' width='199' height='164' border='0' alt=''>"
|
28 |
Const img_Reports = "<img src='images/img_reports2.jpg' width='199' height='164' border='0' alt=''>"
|
| 29 |
'------------ VARIABLE INIT -------------------
|
29 |
'------------ VARIABLE INIT -------------------
|
| 30 |
parGroup = Request("group")
|
30 |
parGroup = Request("group")
|
| 31 |
parRepNum = Request("repnum")
|
31 |
parRepNum = Request("repnum")
|
| 32 |
parPrint = Request("print")
|
32 |
parPrint = Request("print")
|
| 33 |
'------------ CONDITIONS ----------------------
|
33 |
'------------ CONDITIONS ----------------------
|
| 34 |
'----------------------------------------------
|
34 |
'----------------------------------------------
|
| 35 |
%>
|
35 |
%>
|
| 36 |
<%
|
36 |
<%
|
| 37 |
' Document Type Download
|
37 |
' Document Type Download
|
| 38 |
If Request("doctype") = "word" Then
|
38 |
If Request("doctype") = "word" Then
|
| 39 |
Response.ContentType = "application/msword"
|
39 |
Response.ContentType = "application/msword"
|
| 40 |
|
40 |
|
| 41 |
ElseIf Request("doctype") = "excel" Then
|
41 |
ElseIf Request("doctype") = "excel" Then
|
| 42 |
Response.ContentType = "application/vnd.ms-excel"
|
42 |
Response.ContentType = "application/vnd.ms-excel"
|
| 43 |
|
43 |
|
| 44 |
End If
|
44 |
End If
|
| 45 |
%>
|
45 |
%>
|
| 46 |
<html>
|
46 |
<html>
|
| 47 |
<head>
|
47 |
<head>
|
| 48 |
<title>Release Manager</title>
|
48 |
<title>Release Manager</title>
|
| 49 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
49 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
| 50 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
50 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
| 51 |
<style media="print">
|
51 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
| 52 |
.myWatermark{
|
52 |
<style media="print">
|
| 53 |
z-index:-1;
|
53 |
.myWatermark{
|
| 54 |
position:absolute;
|
54 |
z-index:-1;
|
| 55 |
display:inline;
|
55 |
position:absolute;
|
| 56 |
width:100%;
|
56 |
display:inline;
|
| 57 |
}
|
57 |
width:100%;
|
| 58 |
</style>
|
58 |
}
|
| 59 |
<style media="screen">
|
59 |
</style>
|
| 60 |
.myWatermark{
|
60 |
<style media="screen">
|
| 61 |
display:none;
|
61 |
.myWatermark{
|
| 62 |
}
|
62 |
display:none;
|
| 63 |
</style>
|
63 |
}
|
| 64 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
64 |
</style>
|
| 65 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
65 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
| 66 |
<script language="JavaScript" src="images/common.js"></script>
|
66 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
| 67 |
</head>
|
67 |
<script language="JavaScript" src="images/common.js"></script>
|
| 68 |
<body bgcolor="#FFFFFF" text="#000000">
|
68 |
</head>
|
| 69 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
69 |
<body bgcolor="#FFFFFF" text="#000000">
|
| 70 |
<tr>
|
70 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 71 |
<td valign="bottom" align="right"> </td>
|
71 |
<tr>
|
| 72 |
<td align="right"><a href="index.asp"><img src="images/b_release_manager_small.jpg" width="300" height="32" border="0"></a></td>
|
72 |
<td valign="bottom" align="right"> </td>
|
| 73 |
</tr>
|
73 |
<td align="right"><a href="index.asp"><img src="images/b_release_manager_small.jpg" width="300" height="32" border="0"></a></td>
|
| 74 |
<tr>
|
74 |
</tr>
|
| 75 |
<td background="images/h_dot.gif" height="1"></td>
|
75 |
<tr>
|
| 76 |
<td background="images/h_dot.gif" height="1"></td>
|
76 |
<td background="images/h_dot.gif" height="1"></td>
|
| 77 |
</tr>
|
77 |
<td background="images/h_dot.gif" height="1"></td>
|
| 78 |
</table>
|
78 |
</tr>
|
| 79 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
79 |
</table>
|
| 80 |
<tr>
|
80 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 81 |
<td colspan="2" background="images/bg_lght_gray.gif" class="rep_ttl"><br>
|
81 |
<tr>
|
| 82 |
<!-- REPORT TITLE ----------------->
|
82 |
<td colspan="2" background="images/bg_lght_gray.gif" class="rep_ttl"><br>
|
| 83 |
<%Section = "TITLE"%>
|
83 |
<!-- REPORT TITLE ----------------->
|
| 84 |
<b><!--#include file="_reports_call.asp"--></b>
|
84 |
<%Section = "TITLE"%>
|
| 85 |
<!-- REPORT TITLE END ------------->
|
85 |
<b><!--#include file="_reports_call.asp"--></b>
|
| 86 |
</td>
|
86 |
<!-- REPORT TITLE END ------------->
|
| 87 |
</tr>
|
87 |
</td>
|
| 88 |
<tr>
|
88 |
</tr>
|
| 89 |
<td colspan="2" background="images/bg_action_norm.gif" class="body_scol_thin" nowrap>Generated on <%=ToLongDate ( Date )%></td>
|
89 |
<tr>
|
| 90 |
</tr>
|
90 |
<td colspan="2" background="images/bg_action_norm.gif" class="body_scol_thin" nowrap>Generated on <%=ToLongDate ( Date )%></td>
|
| 91 |
<tr>
|
91 |
</tr>
|
| 92 |
<td valign="top" background="images/bg_action_norm.gif"><!--#include file="reports_image_definition.asp"--></td>
|
92 |
<tr>
|
| 93 |
<td background="images/bg_bage.gif">
|
93 |
<td valign="top" background="images/bg_action_norm.gif"><!--#include file="reports_image_definition.asp"--></td>
|
| 94 |
<!-- FORM ----------------------->
|
94 |
<td background="images/bg_bage.gif">
|
| 95 |
<%Section = "FORM"%>
|
95 |
<!-- FORM ----------------------->
|
| 96 |
<!--#include file="_reports_call.asp"-->
|
96 |
<%Section = "FORM"%>
|
| 97 |
<!-- FORM END ------------------->
|
97 |
<!--#include file="_reports_call.asp"-->
|
| 98 |
</td>
|
98 |
<!-- FORM END ------------------->
|
| 99 |
</tr>
|
99 |
</td>
|
| 100 |
<tr>
|
100 |
</tr>
|
| 101 |
<td width="1%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
101 |
<tr>
|
| 102 |
<td width="100%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
102 |
<td width="1%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 103 |
</tr>
|
103 |
<td width="100%" background="images/bg_action_norm.gif"><img src="images/spacer.gif" width="1" height="1"></td>
|
| 104 |
</table>
|
104 |
</tr>
|
| 105 |
<!-- REPORT ------------------------------------->
|
105 |
</table>
|
| 106 |
<table width="100%" border="0" cellspacing="30" cellpadding="0">
|
106 |
<!-- REPORT ------------------------------------->
|
| 107 |
<tr>
|
107 |
<table width="100%" border="0" cellspacing="30" cellpadding="0">
|
| 108 |
<td>
|
108 |
<tr>
|
| 109 |
<%Section = "BODY"%>
|
109 |
<td>
|
| 110 |
<!--#include file="_reports_call.asp"-->
|
110 |
<%Section = "BODY"%>
|
| 111 |
</td>
|
111 |
<!--#include file="_reports_call.asp"-->
|
| 112 |
</tr>
|
112 |
</td>
|
| 113 |
</table>
|
113 |
</tr>
|
| 114 |
<!-- REPORT END ------------------------------------->
|
114 |
</table>
|
| 115 |
<div class="myWatermark">
|
115 |
<!-- REPORT END ------------------------------------->
|
| 116 |
<!--#include file="_footer.asp"-->
|
116 |
<div class="myWatermark">
|
| 117 |
</div>
|
117 |
<!--#include file="_footer.asp"-->
|
| 118 |
|
118 |
</div>
|
| 119 |
</body>
|
119 |
|
| 120 |
</html>
|
120 |
</body>
|
| - |
|
121 |
</html>
|