Subversion Repositories DevTools

Rev

Rev 5506 | Rev 5957 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5506 Rev 5893
Line 1... Line 1...
1
<%@LANGUAGE="VBSCRIPT"%>
1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
2
<%
3
'=====================================================
3
'=====================================================
4
'|                                                   |
4
'|                                                   |
5
'|				      UPDATE JATS  					 |
5
'|      UPDATE JATS                                  |
6
'|					 DEPENDENCIES					 |
6
'|      DEPENDENCIES                                 |
7
'|                                                   |
7
'|                                                   |
8
'=====================================================
8
'=====================================================
9
%>
9
%>
10
<%
10
<%
11
Option explicit
11
Option explicit
12
' Good idea to set when using redirect
12
' Good idea to set when using redirect
13
Response.Expires = 0	' always load the page, dont store
13
Response.Expires = 0    ' always load the page, dont store
14
%>
14
%>
15
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/conf.asp"-->
16
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/globals.asp"-->
17
<!--#include file="common/formating.asp"-->
17
<!--#include file="common/formating.asp"-->
18
<!--#include file="common/qstr.asp"-->
18
<!--#include file="common/qstr.asp"-->
19
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_subs.asp"-->
-
 
20
 
20
<%
21
<%
21
' Make sure rtag_id is always present
22
' Make sure rtag_id is always present
22
If Request("pv_id") = "" Then
23
If Request("pv_id") = "" Then
23
	Response.Redirect("index.asp")
24
    Response.Redirect("index.asp")
24
End If
25
End If
25
%>
26
%>
26
<%
27
<%
27
'------------ ACCESS CONTROL ------------------
28
'------------ ACCESS CONTROL ------------------
28
%>
29
%>
Line 67... Line 68...
67
<!--#include file="_header.asp"-->
68
<!--#include file="_header.asp"-->
68
<!-- BODY ---->
69
<!-- BODY ---->
69
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
70
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
70
  <tr>
71
  <tr>
71
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
72
    <td align="center" valign="top" background="images/bg_lght_gray.gif">
72
	<!-- MIDDLE -->
73
    <!-- MIDDLE -->
73
	<!--#include file="_form_update_jats_dependencies_page.asp"-->
74
    <!--#include file="_form_update_jats_dependencies_page.asp"-->
74
	</td>
75
    </td>
75
  </tr>
76
  </tr>
76
  <tr>
77
  <tr>
77
    <td valign="bottom" background="images/bg_lght_gray.gif">
78
    <td valign="bottom" background="images/bg_lght_gray.gif">
78
	<!-- FOOTER -->
79
    <!-- FOOTER -->
79
	<!--#include file="_footer.asp"-->
80
    <!--#include file="_footer.asp"-->
80
	</td>
81
    </td>
81
  </tr>
82
  </tr>
82
</table>
83
</table>
83
</body>
84
</body>
84
</html>
85
</html>
85
<%
86
<%
86
Call Destroy_All_Objects
87
Call Destroy_All_Objects
87
%>
88
%>
88
 
-