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