Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29 jtweddle 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'					Upload	PDF
9
'=====================================================
10
%>
11
<!--#include file="common/config.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/formating.asp"-->
14
<!--#include file="common/qstr.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="common/common_dbedit.asp"-->
17
<!--#include file="_tabs.asp"-->
18
<!--#include file="common/_popup_window_common.asp"-->
19
<%
20
' Set rfile parameter. This is a return page after Login
21
Call objPMod.StoreParameter ( "rfile", "bom_home.asp" )
22
'------------ ACCESS CONTROL ------------------
23
%>
24
 
25
<!--#include file="_access_control_general.asp"-->
26
 
27
<%
28
'------------ Variable Definition -------------
29
Dim rsQry
30
'------------ Constants Declaration -----------
31
'------------ Variable Init -------------------
32
parBom_id = Request("bom_id")
33
'----------------------------------------------
34
%>
35
<html>
36
<head>
37
<title>Deployment Manager - Upload New PDF</title>
38
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
39
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
40
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
41
<link rel="stylesheet" href="images/navigation.css" type="text/css">
42
<script language="JavaScript" src="scripts/common.js"></script>
43
<!-- TIPS -->
44
<script language="JavaScript" src="images/tipster.js"></script>
45
<script language="JavaScript" src="images/_help_tips.js"></script>
46
</head>
47
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();">
48
<!-- TIPS LAYERS -------------------------------------->
49
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
50
<!----------------------------------------------------->
51
<form action="_upload_pdf.asp" method="post" enctype="multipart/form-data" name="uploadpdf">
52
  <table width="100%" border="0" cellspacing="0" cellpadding="2" height="100%">
53
    <tr> 
54
      <td width="1%" background="images/lbox_bg_orange.gif"><img src="images/i_unit_test_off.gif" width="18" height="25" hspace="5" border="0"></td>
55
      <td width="1%" background="images/lbox_bg_blue.gif" nowrap class="wform_ttl">&nbsp;Upload PDF</td>
56
	  <td width="100%" background="images/lbox_bg_blue.gif" align="right" nowrap class="wform_ttl"><SPAN id="ProgressBar" name="ProgressBar" style="visibility:hidden;"><img src="images/i_processing.gif" width="11" height="17" align="absmiddle" hspace="3">Uploading... Please Wait!</SPAN>&nbsp;
57
		<input type="submit" name="btn" value="Submit" class="form_btn_comp">
58
		<input type="reset" name="btn" value="Cancel" class="form_btn_comp" onclick="self.close()">
59
      </td>
60
      <td background="images/lbox_bg_blue.gif" align="right" width="1%" nowrap><img src="images/h_trsp_dot.gif" width="5" height="22"></td>
61
    </tr>
62
    <tr> 
63
      <td height="100%" width="1%">&nbsp;</td>
64
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/bg_form_lightgray.gif"> 
65
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
66
          <tr>
67
            <td width="1%" nowrap class="sublbox_hitem"><img src="images/h_trsp_dot.gif" width="10" height="30">
68
                <%If Request("save_stat") <> "" Then%>
69
                Saving complete.
70
                <%End If%></td>
71
          </tr>
72
          <tr>
73
            <td background="images/lbox_bg_blue.gif"></td>
74
            <td background="images/lbox_bg_blue.gif">&nbsp;</td>
75
          </tr>
76
        </table>
77
 
78
 
79
		<br>
80
 
81
 
82
		<table width="100%" border="0" cellspacing="1" cellpadding="2">
83
          <tr> 
84
            <td width="1%">&nbsp;</td>
85
            <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field"></td>
86
            <td width="100%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">
87
			<SPAN name="spanResultsAttachment" id="spanResultsAttachment">
88
			PDF File Attachment <br><input name="results_file" type="file" class="form_item" size="50" class="form_txt">
89
			</SPAN>
90
            </td>
91
          </tr>
92
 
93
          <tr> 
94
            <td width="1%">&nbsp;</td>
95
            <td width="1%" nowrap class="form_field"><img src="images/h_trsp_dot.gif" width="100" height="10"></td>
96
            <td nowrap width="100%"> <p>&nbsp;</p></td>
97
          </tr>
98
      </table>
99
	  </td>
100
    </tr>
101
    <tr>
102
      <td height="1%" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="5"></td>
103
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/lbox_bg_blue.gif"></td>
104
    </tr>
105
  </table>
106
  <input type="hidden" name="bom_id" value="<%=parBom_id%>">
107
</form>
108
</body>
109
</html>
110
 
111
 
112
<!-- DESTRUCTOR ------->
113
<!--#include file="common/globals_destructor.asp"-->