Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
5377 dpurdie 4
'   RequestUserWip.asp
119 ghuddy 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">Location</td>
41
						  </tr>
42
 
43
<%
44
						  OraDatabase.Parameters.Add "USER_ID", Request("user_id"), 	ORAPARM_INPUT, ORATYPE_NUMBER 
45
 
46
						  Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserWip.sql"), cint(0))
47
 
48
						  OraDatabase.Parameters.Remove "USER_ID"
49
 
50
						  %>
51
						  <%If rsTemp.RecordCount < 1 Then%>
52
						  <tr> 
53
							<td background="images/bg_form_lightgray.gif" nowrap>&nbsp;</td>
54
                          </tr>
55
						  <%End If%>
56
			  			  <%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
57
                          <tr> 
58
                            <td background="images/bg_form_lightgray.gif" nowrap class="body_txt"><%=rsTemp("location") &" / "%><a href="dependencies.asp?pv_id=<%=rsTemp("pv_id")%>&rtag_id=<%=rsTemp("rtag_id")%>" class="txt_linked"><%= rsTemp("pkg_name") &" "& rsTemp("pkg_version") %></a></td>
59
                          </tr>
60
                          <%rsTemp.MoveNext
61
						  WEnd
62
						  rsTemp.Close
63
						  Set rsTemp = nothing%>
64
                        </table>
65
    </td>						
66
  </tr>
67
</table>
68
						<br>
69
 
70
<%
71
Call Destroy_All_Objects
72
%>