Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
5590 dpurdie 4
'   _wform_rename_version.asp
5
'   Rename Version
6
'   --- PROCESS FORM ---
5357 dpurdie 7
'=====================================================
8
%>
9
<%
10
Option explicit
11
' Good idea to set when using redirect
12
Response.Expires = 0  ' always load the page, dont store
5590 dpurdie 13
Dim bInIframe : bInIframe = True
5357 dpurdie 14
%>
15
<!--#include file="common/conf.asp"-->
16
<!--#include file="common/globals.asp"-->
17
<!--#include file="common/formating.asp"-->
18
<!--#include file="common/qstr.asp"-->
19
<!--#include file="common/common_subs.asp"-->
20
<!--#include file="common/_popup_window_common.asp"-->
21
<%
22
'------------ ACCESS CONTROL ------------------
23
%>
24
<!--#include file="_access_control_login.asp"-->
25
<!--#include file="_access_control_general.asp"-->
26
<!--#include file="_access_control_project.asp"-->
27
<html>
28
<head>
29
<title>Release Manager</title>
30
<link rel="shortcut icon" href="<%=FavIcon%>"/>
31
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
32
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
33
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
34
<link rel="stylesheet" href="images/navigation.css" type="text/css">
35
<script language="JavaScript" src="images/common.js"></script>
36
</head>
37
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
38
<!----------------------------------------------------->
39
<!-- MIDDLE -->
40
<!--#include file="_form_new_version_page.asp"-->
41
</body>
42
</html>
43
<%
44
Call Destroy_All_Objects
45
%>