Subversion Repositories DevTools

Rev

Rev 7458 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5357 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%Option Explicit%>
3
<%Response.Expires = 0%>
4
<!--#include file="../common/conf.asp"-->
5
<%
6
'-- VARIABLE DECLARATION ----------------
7
Dim tempArr
8
Dim parRtag_id
9
Dim parPv_id
10
Dim parMsg
11
'-- CONSTANTS ---------------------------
12
'-- INITIALISATION ----------------------
13
parMsg = Session(enum_RELMGR_ERRDESCRIPTION)
14
'-- DESTROY -----------------------------
15
Session(enum_RELMGR_ERRDESCRIPTION) = NULL
16
'----------------------------------------
17
%>
18
<html>
19
<head>
7459 dpurdie 20
    <title>Release Manager</title>
21
    <link rel="shortcut icon" href="<%=FavIcon%>"/>
22
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
23
    <link href="../images/release_manager_style.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
24
    <link href="../images/navigation.css?ver=<%=VixVerNum%>" rel="stylesheet" type="text/css">
5357 dpurdie 25
</head>
26
 
27
<body leftmargin="0" topmargin="0">
7458 dpurdie 28
<!--#include file="../_header.asp"-->
29
<table height="90%" class="full_table bg_grey">
7459 dpurdie 30
    <tr>
7458 dpurdie 31
    <td align="center">
7459 dpurdie 32
    <table width="650" border="0" cellspacing="0" cellpadding="0">
5357 dpurdie 33
        <tr>
7459 dpurdie 34
        <td>
35
        <table width="100%" border="0" cellspacing="0" cellpadding="0" class=rounded_box>
36
            <tr>
37
            <td width="1%" bgcolor="#FFFFFF"><img src="../images/h_trsp_dot.gif" width="1" height="1"></td><td
38
                bgcolor="#FFFFFF" valign="top">
39
            <!-- Body -->
40
            <table width="400" border="0" cellspacing="0" cellpadding="5">
41
                <form name="message" method="get" action="#">
42
                    <tr>
43
                    <td width="1"><img src="../images/i_warning.gif" width="32" height="32"></td><td class="err_ttl">
44
                    Error!</td>
45
                    </tr>
46
                    <tr>
47
                    <td>&nbsp;</td>
48
                    <td class="err_sol">
49
                    <!-- Error Details --------------------------------------->
50
                    <%= parMsg %>
51
                    </td>
52
                    </tr>
53
                    <tr>
54
                    <td>&nbsp;</td>
55
                    <td class="err_dtl">
56
                    <!-- Error Solution --------------------------------------->
57
                    </td>
58
                    </tr>
59
                    <tr>
60
                    <td>&nbsp;</td>
61
                    <td><br>
62
                    <input type="reset" name="btn" value="&laquo; Back" class="form_btn" onClick="history.back()">
63
                    </td>
64
                    </tr>
65
                    <input type='hidden' name='rtag_id' value='<%=parRtag_id%>'>
66
                    <input type='hidden' name='pv_id' value='<%=parPv_id%>'>
67
                </form>
7458 dpurdie 68
            </table>
7459 dpurdie 69
            <!-- END Body-->
70
            </td>
71
            <td width="1%" background="../images/lbox_bgside_white.gif">&nbsp;</td>
72
            </tr>
73
        </table>
74
        </td>
5357 dpurdie 75
        </tr>
7459 dpurdie 76
    </table>
5357 dpurdie 77
    </td>
7459 dpurdie 78
    </tr>
5357 dpurdie 79
</table>
5957 dpurdie 80
<!-- FOOTER -->
81
<!--#include file="../_footer.asp"-->
5357 dpurdie 82
</body>
83
</html>
84