Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
119 ghuddy 1
<%
2
'===================================================================
3
'							Form Window Common
4
'===================================================================
5
%>
6
<!--#include file="../class/classValidationControl.asp"-->
7
<!--#include file="../controls/ERGFormComponent/classFormComponent.asp"-->
8
<%
9
'------------ VARIABLE DEFINITION -------------
10
Dim objForm
11
Dim objFormCollector
12
Dim objFormComponent
13
'------------ CONSTANTS DECLARATION -----------
14
'------------ VARIABLE INIT -------------------
15
Set objPMod = New PersistanceModule
16
Set objForm = New ValidationControl
17
Set objFormCollector = CreateObject("Scripting.Dictionary")
18
Set objFormComponent = New FormComponent
19
'------------ CONDITIONS ----------------------
20
'----------------------------------------------
21
%>
22
<%
23
'------------ RUN BEFORE PAGE RENDER ----------
24
objPMod.PersistInQryString ( aPersistList )
25
'----------------------------------------------
26
%>
7286 dpurdie 27