Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5901 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'   RequestUserWip.asp
5
'=====================================================
6
%>
7
<%
8
Option explicit
9
' Good idea to set when using redirect
10
Response.Expires = 0	' always load the page, dont store
11
%>
12
<!--#include file="common/conf.asp"-->
13
<!--#include file="common/globals.asp"-->
14
<!--#include file="common/formating.asp"-->
15
<!--#include file="common/qstr.asp"-->
16
<!--#include file="common/common_subs.asp"-->
17
<%
18
'------------ Variable Definition -------------
19
Dim rsTemp
20
Dim PageInfoHash
21
'------------ Constants Declaration -----------
22
'------------ Variable Init -------------------
23
Set PageInfoHash = CreateObject("Scripting.Dictionary")
24
'----------------------------------------------
25
%>
26
<%
27
'------------------------------------------------------------------------------------------------------------------------
28
'------------------------------------------------------------------------------------------------------------------------
29
%>
30
<%
31
'------------------------ MAIN LINE ---------------------------------
32
'--------------------------------------------------------------------
33
%>
34
<table width="100%" border="0" cellspacing="0" cellpadding="0">
35
	<tr>
36
	 <td background="images/bg_form_lightbluedark.gif">		
37
 
38
						<table width="100%" border="0" cellspacing="1" cellpadding="3">
39
                          <tr>
40
						    <td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Package Version</td>
41
						    <td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Reason for this version</td>
42
						  </tr>
43
 
44
<%
45
						  OraDatabase.Parameters.Add "USER_ID", Request("user_id"), 	ORAPARM_INPUT, ORATYPE_NUMBER 
46
 
47
						  Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserDangle.sql"), cint(0))
48
 
49
						  OraDatabase.Parameters.Remove "USER_ID"
50
 
51
						  %>
52
						  <%If rsTemp.RecordCount < 1 Then%>
53
						  <tr> 
54
							<td background="images/bg_form_lightgray.gif" nowrap>&nbsp;</td>
55
                          </tr>
56
						  <%End If%>
57
			  			  <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
58
                          <tr> 
59
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt">
5933 dpurdie 60
                                <a href="javascript:;" onClick="MM_openBrWindow('_wform_versions_history_release_notes.asp?pkg_id=<%=rsTemp("pkg_id")%>&pv_id=<%=rsTemp("pv_id")%>','History','resizable=yes,scrollbars=yes,width=1000,height='+ ( screen.height - 100 ))" class="txt_linked">
5901 dpurdie 61
                                    <%= rsTemp("pkg_name") &" "& rsTemp("pkg_version") %>
62
                                </a></td>
63
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%= rsTemp("comments")%></td>
64
                          </tr>
65
                          <%rsTemp.MoveNext
66
						  WEnd
67
						  rsTemp.Close
68
						  Set rsTemp = nothing%>
69
                        </table>
70
    </td>						
71
  </tr>
72
</table>
73
						<br>
74
 
75
<%
76
Call Destroy_All_Objects
77
%>