| 7286 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'
|
|
|
5 |
' _iframe_logged_out.asp
|
|
|
6 |
' This page is designed to be called from within an IFRAME
|
|
|
7 |
'
|
|
|
8 |
' Display amessage indicaing that the function is not
|
|
|
9 |
' available as the user has been logged out.
|
|
|
10 |
'
|
|
|
11 |
'=====================================================
|
|
|
12 |
%>
|
|
|
13 |
<%
|
|
|
14 |
Option explicit
|
|
|
15 |
' Good idea to set when using redirect
|
|
|
16 |
Response.Expires = 0 ' always load the page, dont store
|
|
|
17 |
%>
|
|
|
18 |
<!--#include file="common/conf.asp"-->
|
|
|
19 |
<!--#include file="common/globals.asp"-->
|
|
|
20 |
<!--#include file="common/qstr.asp"-->
|
|
|
21 |
<!--#include file="common/common_subs.asp"-->
|
|
|
22 |
<%
|
|
|
23 |
'------------ Variable Definition -------------
|
|
|
24 |
'------------ Constants Declaration -----------
|
|
|
25 |
'------------ Variable Init -------------------
|
|
|
26 |
'----------------------------------------------
|
|
|
27 |
'--- Bfore Render ---------------
|
|
|
28 |
'----------------------------------------------
|
|
|
29 |
%>
|
|
|
30 |
<html>
|
|
|
31 |
<head>
|
|
|
32 |
<title>Release Manager</title>
|
|
|
33 |
<link rel="shortcut icon" href="<%=FavIcon%>"/>
|
|
|
34 |
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
|
35 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
36 |
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
|
|
|
37 |
<!--#include file="_jquery_includes.asp"-->
|
|
|
38 |
<script language="javascript">
|
|
|
39 |
$(document).ready(function () {
|
|
|
40 |
// Cancel button must close this iFrame using a function provided by the parent
|
|
|
41 |
$('#btn_cancel').on('click', function (e) {parent.closeIFrame()});
|
|
|
42 |
});
|
|
|
43 |
</script>
|
|
|
44 |
</head>
|
|
|
45 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
|
|
|
46 |
<!----------------------------------------------------->
|
|
|
47 |
<!-- BODY ---->
|
|
|
48 |
<div class="panel tight">
|
|
|
49 |
<div class=textPanel>
|
|
|
50 |
<img src="images/i_warning.gif" style="float:left; margin:0 7px 20px 0;">
|
|
|
51 |
This operation is not available at the moment.
|
|
|
52 |
<br>You have has been logged out of Release Manager.
|
|
|
53 |
<p>You will need to log in again to gain access to this operation.
|
|
|
54 |
</div>
|
|
|
55 |
<div class=buttonPanelWhite>
|
|
|
56 |
<button id="btn_cancel" class="form_btn">Done</button>
|
|
|
57 |
</div>
|
|
|
58 |
</body>
|
|
|
59 |
</html>
|
|
|
60 |
<%
|
|
|
61 |
Call Destroy_All_Objects
|
|
|
62 |
%>
|