Subversion Repositories DevTools

Rev

Rev 5958 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5355 dpurdie 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
<!--#include file="_access_control_general.asp"-->
25
<%
26
'------------ Variable Definition -------------
27
Dim rsQry
28
'------------ Constants Declaration -----------
29
'------------ Variable Init -------------------
30
parBom_id = Request("bom_id")
31
'----------------------------------------------
32
%>
33
<html>
34
<head>
35
<title>Deployment Manager - Upload New PDF</title>
36
<link rel="shortcut icon" href="<%=FavIcon%>"/>
37
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
38
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
39
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
40
<link rel="stylesheet" href="images/navigation.css" type="text/css">
41
<script language="JavaScript" src="scripts/common.js"></script>
42
<!-- TIPS -->
43
<script language="JavaScript" src="images/tipster.js"></script>
44
<script language="JavaScript" src="images/_help_tips.js"></script>
45
</head>
46
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" onload="self.focus();">
47
<!-- TIPS LAYERS -------------------------------------->
48
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
49
<!----------------------------------------------------->
50
<form action="_upload_pdf.asp" method="post" enctype="multipart/form-data" name="uploadpdf">
51
  <table width="100%" border="0" cellspacing="0" cellpadding="2" height="100%">
52
    <tr> 
53
      <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>
54
      <td width="1%" background="images/lbox_bg_blue.gif" nowrap class="wform_ttl">&nbsp;Upload PDF</td>
55
	  <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;
56
		<input type="submit" name="btn" value="Submit" class="form_btn_comp">
57
		<input type="reset" name="btn" value="Cancel" class="form_btn_comp" onclick="self.close()">
58
      </td>
59
      <td background="images/lbox_bg_blue.gif" align="right" width="1%" nowrap><img src="images/h_trsp_dot.gif" width="5" height="22"></td>
60
    </tr>
61
    <tr> 
62
      <td height="100%" width="1%">&nbsp;</td>
63
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/bg_form_lightgray.gif"> 
64
        <table width="100%"  border="0" cellspacing="0" cellpadding="0">
65
          <tr>
66
            <td width="1%" nowrap class="sublbox_hitem"><img src="images/h_trsp_dot.gif" width="10" height="30">
67
                <%If Request("save_stat") <> "" Then%>
68
                Saving complete.
69
                <%End If%></td>
70
          </tr>
71
          <tr>
72
            <td background="images/lbox_bg_blue.gif"></td>
73
            <td background="images/lbox_bg_blue.gif">&nbsp;</td>
74
          </tr>
75
        </table>
76
 
77
 
78
		<br>
79
 
80
 
81
		<table width="100%" border="0" cellspacing="1" cellpadding="2">
82
          <tr> 
83
            <td width="1%">&nbsp;</td>
84
            <td width="1%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field"></td>
85
            <td width="100%" nowrap background="images/bg_form_lightbluedark.gif" class="form_field">
86
			<SPAN name="spanResultsAttachment" id="spanResultsAttachment">
87
			PDF File Attachment <br><input name="results_file" type="file" class="form_item" size="50" class="form_txt">
88
			</SPAN>
89
            </td>
90
          </tr>
91
 
92
          <tr> 
93
            <td width="1%">&nbsp;</td>
94
            <td width="1%" nowrap class="form_field"><img src="images/h_trsp_dot.gif" width="100" height="10"></td>
95
            <td nowrap width="100%"> <p>&nbsp;</p></td>
96
          </tr>
97
      </table>
98
	  </td>
99
    </tr>
100
    <tr>
101
      <td height="1%" width="1%"><img src="images/h_trsp_dot.gif" width="5" height="5"></td>
102
      <td valign="top" nowrap colspan="3" class="wform_ttl" background="images/lbox_bg_blue.gif"></td>
103
    </tr>
104
  </table>
105
  <input type="hidden" name="bom_id" value="<%=parBom_id%>">
106
</form>
107
</body>
108
</html>
109
<!-- DESTRUCTOR ------->
29 jtweddle 110
<!--#include file="common/globals_destructor.asp"-->