Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'                  Rename Version
5
'               --- PROCESS FORM ---
6
'=====================================================
7
%>
8
<%
9
Option explicit
10
' Good idea to set when using redirect
11
Response.Expires = 0  ' always load the page, dont store
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/_popup_window_common.asp"-->
19
<%
20
'------------ ACCESS CONTROL ------------------
21
%>
22
<!--#include file="_access_control_login.asp"-->
23
<!--#include file="_access_control_general.asp"-->
24
<!--#include file="_access_control_project.asp"-->
25
<html>
26
<head>
27
<title>Release Manager</title>
28
<link rel="shortcut icon" href="<%=FavIcon%>"/>
29
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
30
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
31
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
32
<link rel="stylesheet" href="images/navigation.css" type="text/css">
33
<script language="JavaScript" src="images/common.js"></script>
34
</head>
35
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
36
<!-- TIPS LAYERS -------------------------------------->
37
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
38
<!----------------------------------------------------->
39
<!-- MIDDLE -->
40
<!--#include file="_form_new_version_page.asp"-->
41
</body>
42
</html>
43
<%
44
Call Destroy_All_Objects
45
%>