| 119 |
ghuddy |
1 |
<%@LANGUAGE="VBSCRIPT"%>
|
|
|
2 |
<%
|
|
|
3 |
'=====================================================
|
|
|
4 |
'| |
|
|
|
5 |
'| RequestUserWip.asp |
|
|
|
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 |
'------------ Variable Definition -------------
|
|
|
21 |
Dim rsTemp
|
|
|
22 |
Dim PageInfoHash
|
|
|
23 |
'------------ Constants Declaration -----------
|
|
|
24 |
'------------ Variable Init -------------------
|
|
|
25 |
Set PageInfoHash = CreateObject("Scripting.Dictionary")
|
|
|
26 |
'----------------------------------------------
|
|
|
27 |
%>
|
|
|
28 |
<%
|
|
|
29 |
'------------------------------------------------------------------------------------------------------------------------
|
|
|
30 |
'------------------------------------------------------------------------------------------------------------------------
|
|
|
31 |
%>
|
|
|
32 |
<%
|
|
|
33 |
'------------------------ MAIN LINE ---------------------------------
|
|
|
34 |
'--------------------------------------------------------------------
|
|
|
35 |
%>
|
|
|
36 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
37 |
<tr>
|
|
|
38 |
<td background="images/bg_form_lightbluedark.gif">
|
|
|
39 |
|
|
|
40 |
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
|
|
41 |
<tr>
|
|
|
42 |
<td background="images/bg_form_lightbluedark.gif" nowrap class="body_txt">Location</td>
|
|
|
43 |
</tr>
|
|
|
44 |
|
|
|
45 |
<%
|
|
|
46 |
OraDatabase.Parameters.Add "USER_ID", Request("user_id"), ORAPARM_INPUT, ORATYPE_NUMBER
|
|
|
47 |
|
|
|
48 |
Set rsTemp = OraDatabase.DbCreateDynaset( GetQuery("UserWip.sql"), cint(0))
|
|
|
49 |
|
|
|
50 |
OraDatabase.Parameters.Remove "USER_ID"
|
|
|
51 |
|
|
|
52 |
%>
|
|
|
53 |
<%If rsTemp.RecordCount < 1 Then%>
|
|
|
54 |
<tr>
|
|
|
55 |
<td background="images/bg_form_lightgray.gif" nowrap> </td>
|
|
|
56 |
</tr>
|
|
|
57 |
<%End If%>
|
|
|
58 |
<%While ((NOT rsTemp.BOF) AND (NOT rsTemp.EOF))%>
|
|
|
59 |
<tr>
|
|
|
60 |
<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>
|
|
|
61 |
</tr>
|
|
|
62 |
<%rsTemp.MoveNext
|
|
|
63 |
WEnd
|
|
|
64 |
rsTemp.Close
|
|
|
65 |
Set rsTemp = nothing%>
|
|
|
66 |
</table>
|
|
|
67 |
</td>
|
|
|
68 |
</tr>
|
|
|
69 |
</table>
|
|
|
70 |
<br>
|
|
|
71 |
|
|
|
72 |
<%
|
|
|
73 |
Call Destroy_All_Objects
|
|
|
74 |
%>
|