| 5049 |
dpurdie |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| form_new_sdk_version.asp
|
|
|
5 |
'| Create a new version of an SDK
|
|
|
6 |
'|
|
|
|
7 |
'=====================================================
|
|
|
8 |
%>
|
|
|
9 |
<%
|
|
|
10 |
Option explicit
|
|
|
11 |
' Good idea to set when using redirect
|
|
|
12 |
Response.Expires = 0 ' always load the page, dont store
|
|
|
13 |
%>
|
|
|
14 |
<!--#include file="common/conf.asp"-->
|
|
|
15 |
<!--#include file="common/globals.asp"-->
|
|
|
16 |
<!--#include file="common/formating.asp"-->
|
|
|
17 |
<!--#include file="common/qstr.asp"-->
|
|
|
18 |
<!--#include file="common/common_subs.asp"-->
|
|
|
19 |
<%
|
|
|
20 |
'------------ ACCESS CONTROL ------------------
|
|
|
21 |
%>
|
|
|
22 |
<!--#include file="_access_control_general.asp"-->
|
|
|
23 |
<%
|
|
|
24 |
'------------ Variable Definition -------------
|
|
|
25 |
'------------ Constants Declaration -----------
|
|
|
26 |
'------------ Variable Init -------------------
|
|
|
27 |
'----------------------------------------------
|
|
|
28 |
%>
|
|
|
29 |
<html>
|
|
|
30 |
<head>
|
|
|
31 |
<title>Release Manager</title>
|
|
|
32 |
<meta http-equiv="Pragma" content="no-cache">
|
|
|
33 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
34 |
<link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
|
|
|
35 |
<link rel="stylesheet" href="images/navigation.css" type="text/css">
|
|
|
36 |
<script language="JavaScript" src="images/common.js"></script>
|
|
|
37 |
<script type="text/javascript" language="javascript" src="jquery/jquery.js"></script>
|
|
|
38 |
<script type="text/javascript" language="javascript" src="jquery/jquery-ui.js"></script>
|
|
|
39 |
<link rel="stylesheet" href="jquery/jquery-ui.css" type="text/css">
|
|
|
40 |
<script src="jquery/form-validator/jquery.form-validator.min.js"></script>
|
|
|
41 |
<link rel="stylesheet" href="jquery/form-validator.css" type="text/css">
|
|
|
42 |
<!-- TIPS -->
|
|
|
43 |
<!-- DROPDOWN MENUS -->
|
|
|
44 |
<!--#include file="_menu_def.asp"-->
|
|
|
45 |
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
|
|
|
46 |
<script language="JavaScript" type="text/javascript">
|
|
|
47 |
$(document).ready(function() {
|
|
|
48 |
$('#popmenu').load('sdk_version_new.asp', {rtag_id : <%=parRtag_id%>});
|
|
|
49 |
});
|
|
|
50 |
</script>
|
|
|
51 |
<style type="text/css">
|
|
|
52 |
</style>
|
|
|
53 |
</head>
|
|
|
54 |
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
|
|
|
55 |
|
|
|
56 |
<!-- MENU LAYERS -------------------------------------->
|
|
|
57 |
<div id="popmenu" class="menuskin" onmouseover="clearhidemenu();highlightmenu(event,'on')"
|
|
|
58 |
onmouseout="highlightmenu(event,'off');dynamichide(event)">
|
|
|
59 |
</div>
|
|
|
60 |
<!-- TIPS LAYERS -------------------------------------->
|
|
|
61 |
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10"> </div>
|
|
|
62 |
<!----------------------------------------------------->
|
|
|
63 |
<!-- HEADER -->
|
|
|
64 |
<!--#include file="_header.asp"-->
|
|
|
65 |
<!-- BODY ---->
|
|
|
66 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#EEEFEF">
|
|
|
67 |
<tr>
|
|
|
68 |
<td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
|
|
|
69 |
<td width="5%" rowspan="2" valign="top"></td>
|
|
|
70 |
<td width="80%" rowspan="2" align="center" valign="top">
|
|
|
71 |
<!-- Main display panel -->
|
|
|
72 |
<table class="full_table">
|
|
|
73 |
<!-- Section Header ---->
|
|
|
74 |
<tr>
|
|
|
75 |
<td nowrap class="form_ttl">DON"T KNOW YET</td>
|
|
|
76 |
</tr>
|
|
|
77 |
|
|
|
78 |
<!-- Section Body ---->
|
|
|
79 |
<tr>
|
|
|
80 |
<td>
|
|
|
81 |
<div class="rounded_box">
|
|
|
82 |
<div class=bg_dialog> </div>
|
|
|
83 |
</div>
|
|
|
84 |
</table>
|
|
|
85 |
<!-- End Main display panel -->
|
|
|
86 |
<td width="5%" rowspan="2" valign="top"></td>
|
|
|
87 |
</tr>
|
|
|
88 |
<tr>
|
|
|
89 |
<td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
|
|
|
90 |
<td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
|
|
|
91 |
</tr>
|
|
|
92 |
</table>
|
|
|
93 |
<!-- FOOTER -->
|
|
|
94 |
<!--#include file="_footer.asp"-->
|
|
|
95 |
</body>
|
|
|
96 |
</html>
|
|
|
97 |
<%
|
|
|
98 |
Call Destroy_All_Objects
|
|
|
99 |
%>
|