Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'
'   _iframe_logged_out.asp
'   This page is designed to be called from within an IFRAME
'
'   Display amessage indicaing that the function is not 
'   available as the user has been logged out.
'
'=====================================================
%>
<%
Option explicit
' Good idea to set when using redirect
Response.Expires = 0    ' always load the page, dont store
%>
<!--#include file="common/conf.asp"-->
<!--#include file="common/globals.asp"-->
<!--#include file="common/qstr.asp"-->
<!--#include file="common/common_subs.asp"-->
<%
'------------ Variable Definition -------------
'------------ Constants Declaration -----------
'------------ Variable Init -------------------
'----------------------------------------------
'--- Bfore Render ---------------
'----------------------------------------------
%>
<html>
<head>
<title>Release Manager</title>
<link rel="shortcut icon" href="<%=FavIcon%>"/>
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="images/release_manager_style.css?ver=<%=VixVerNum%>" type="text/css">
<!--#include file="_jquery_includes.asp"-->
<script language="javascript">
$(document).ready(function () {
    //  Cancel button must close this iFrame using a function provided by the parent
    $('#btn_cancel').on('click', function (e) {parent.closeIFrame()});
});
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
<!----------------------------------------------------->
<!-- BODY ---->
<div class="panel tight">
        <div class=textPanel>
                <img src="images/i_warning.gif" style="float:left; margin:0 7px 20px 0;">
        This operation is not available at the moment. 
        <br>You have has been logged out of Release Manager.
        <p>You will need to log in again to gain access to this operation.
        </div>
        <div class=buttonPanelWhite>
                <button id="btn_cancel" class="form_btn">Done</button>
        </div>
</body>
</html>
<%
Call Destroy_All_Objects
%>