Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
119 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
5957 dpurdie 4
'                   IGNORE WARNINGS
119 ghuddy 5
'               --- PROCESS FORM ---
6
'=====================================================
7
%>
8
<%
9
Option explicit
10
' Good idea to set when using redirect
5957 dpurdie 11
Response.Expires = 0    ' always load the page, dont store
119 ghuddy 12
%>
13
 
14
<!--#include file="common/conf.asp"-->
15
<!--#include file="common/globals.asp"-->
16
<!--#include file="common/qstr.asp"-->
17
<!--#include file="common/formating.asp"-->
18
<!--#include file="common/common_subs.asp"-->
19
<!--#include file="common/common_dbedit.asp"-->
20
<%
21
' Set rfile parameter. This is a return page after Login
22
Call objPMod.StoreParameter ( "rfile", "dependencies.asp" )
23
'------------ ACCESS CONTROL ------------------
24
%>
25
<!--#include file="_access_control_login.asp"-->
26
<!--#include file="_access_control_general.asp"-->
27
<!--#include file="_access_control_project.asp"-->
28
<%
29
'------------ Variable Definition -------------
30
Dim FRrtag_id
31
Dim FRpv_id
32
Dim FRforced
33
'------------ Constants Declaration -----------
34
'------------ Variable Init -------------------
35
FRrtag_id = Request("rtag_id")
36
FRpv_id = Request("pv_id")
37
FRforced = Request("forced")
38
'----------------------------------------------
39
%>
40
<%
41
'---------------------------------------------------------------------------------------------------------------------
42
%>
43
<%
44
'-----------------------  MAIN LINE  ---------------------------
45
 
46
'--- Process submition ---
47
If (FRrtag_id <> "") AND (FRpv_id <> "") Then
129 ghuddy 48
   Call SetIgnoreWarnings (FRforced, FRpv_id, FRrtag_id)
5957 dpurdie 49
 
50
    'Call Notify ( FRrtag_id )
51
 
52
    Call Destroy_All_Objects
53
    Response.Redirect("dependencies.asp?rtag_id="& FRrtag_id &"&pv_id="& FRpv_id)
119 ghuddy 54
Else
5957 dpurdie 55
    Response.write "Some mandatory parameters are missing!" & "<br>" 'TODO
56
    Response.write QSTR_FullQuery 
119 ghuddy 57
End If
58
%>
59
<!-- DESTRUCTOR ------->
60
<!--#include file="common/destructor.asp"-->