Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
123 ghuddy 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
Option explicit
4
Response.Expires = 0	' always load the page, dont store
5
%>
6
<%
7
'=====================================================
8
'              Make Bulk Release
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
%>
6048 dpurdie 21
<!--#include file="_access_control_login.asp"-->
123 ghuddy 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_MakeBulkRelease (parRtag_id, parPVIDList)
38
If parPv_id Then
5957 dpurdie 39
   Call Destroy_All_Objects
123 ghuddy 40
   Response.Redirect ( "dependencies.asp?pv_id="& parPv_id &"&rtag_id="& parRtag_id )
41
Else
5957 dpurdie 42
   Call Destroy_All_Objects
123 ghuddy 43
   Response.Redirect ( "dependencies.asp?rtag_id="& parRtag_id )
44
End If
45
%>
46
<!-- DESTRUCTOR ------->
47
<!--#include file="common/destructor.asp"-->