Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4358 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'              Make Bulk Reject
9
'=====================================================
10
%>
11
<!--#include file="common/conf.asp"-->
12
<!--#include file="common/globals.asp"-->
13
<!--#include file="common/formating.asp"-->
14
<!--#include file="common/qstr.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<!--#include file="common/common_dbedit.asp"-->
17
<!--#include file="common/common_make_release_subs.asp"-->
18
<%
19
'------------ ACCESS CONTROL ------------------
20
%>
6181 dpurdie 21
<!--#include file="_access_control_login_optional.asp"-->
4358 dpurdie 22
<!--#include file="_access_control_general.asp"-->
23
<%
24
'------------ Variable Definition -------------
25
Dim parPv_id
26
Dim parPVIDList
27
'------------ Constants Declaration -----------
28
'------------ Variable Init -------------------
29
parPv_id = QStrPar("pv_id")
30
parRtag_id = QStrPar("rtag_id")
31
parPVIDList = Request("pv_id_list")
32
'----------------------------------------------
33
%>
34
 
35
<%
36
'Process submition
37
Call PUBLIC_MakeBulkReject (parRtag_id, parPVIDList)
5957 dpurdie 38
Call Destroy_All_Objects
4358 dpurdie 39
If parPv_id Then
40
   Response.Redirect ( "dependencies.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id )
41
Else
42
   Response.Redirect ( "dependencies.asp?rtag_id="& parRtag_id )
43
End If
44
%>