| Line 6... |
Line 6... |
| 6 |
<!--#include file="../class/classPersistanceModule.asp"-->
|
6 |
<!--#include file="../class/classPersistanceModule.asp"-->
|
| 7 |
<!--#include file="../class/classAccessControl.asp"-->
|
7 |
<!--#include file="../class/classAccessControl.asp"-->
|
| 8 |
<!--#include file="../class/classExceptionHandler.asp"-->
|
8 |
<!--#include file="../class/classExceptionHandler.asp"-->
|
| 9 |
<%
|
9 |
<%
|
| 10 |
' -- Variable Definition ------------------------------
|
10 |
' -- Variable Definition ------------------------------
|
| 11 |
Dim userdetailsHash
|
- |
|
| 12 |
Dim parRtag_id
|
11 |
Dim parRtag_id
|
| 13 |
Dim pkgInfoHash
|
12 |
Dim pkgInfoHash
|
| 14 |
Dim objAccessControl
|
13 |
Dim objAccessControl
|
| 15 |
Dim objPMod
|
14 |
Dim objPMod
|
| 16 |
Dim objEH
|
15 |
Dim objEH
|
| 17 |
Dim objTabControl
|
16 |
Dim objTabControl
|
| 18 |
Dim aPersistList
|
17 |
Dim aPersistList
|
| 19 |
Dim isPopupWindow
|
18 |
Dim isPopupWindow
|
| 20 |
Dim DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID
|
19 |
Dim DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID
|
| 21 |
Dim TIMER_VALUE
|
20 |
Dim TIMER_VALUE
|
| - |
|
21 |
Dim rmDebug ' Will display text in the footer area
|
| 22 |
' -- Variable Initialisation --------------------------
|
22 |
' -- Variable Initialisation --------------------------
|
| 23 |
Set userdetailsHash = CreateObject("Scripting.Dictionary")
|
- |
|
| 24 |
parRtag_id = QStrPar("rtag_id")
|
23 |
parRtag_id = QStrPar("rtag_id")
|
| 25 |
Set objAccessControl = New AccessControl
|
24 |
Set objAccessControl = New AccessControl
|
| 26 |
Set objPMod = New PersistanceModule
|
25 |
Set objPMod = New PersistanceModule
|
| 27 |
Set objEH = New ExceptionHandler
|
26 |
Set objEH = New ExceptionHandler
|
| 28 |
isPopupWindow = FALSE
|
27 |
isPopupWindow = FALSE
|
| - |
|
28 |
rmDebug = ""
|
| 29 |
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID ) ' These parameters are used
|
29 |
Call GetCurrentParameters( DB_PROJ_ID, DB_RTAG_ID, DB_PV_ID ) ' These parameters are used
|
| 30 |
TIMER_VALUE = DateDiff("N", "1/1/1900 00:00:00 AM", Now ) ' Find number of minutes since some very old point in time
|
30 |
TIMER_VALUE = DateDiff("N", "1/1/1900 00:00:00 AM", Now ) ' Find number of minutes since some very old point in time
|
| 31 |
' -- Constants ----------------------------------------
|
31 |
' -- Constants ----------------------------------------
|
| 32 |
Const enumPAR_PROJ_ID = 0
|
32 |
Const enumPAR_PROJ_ID = 0
|
| 33 |
Const enumPAR_RTAG_ID = 1
|
33 |
Const enumPAR_RTAG_ID = 1
|