%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'| |
'| ADMIN Page |
'| PROJECTS |
'| |
'=====================================================
%>
<%
Option explicit
' Good idea to set when using redirect
Response.Expires = 0 ' always load the page, dont store
%>
<%
'------------ ACCESS CONTROL ------------------
%>
<%
'------------ Variable Definition -------------
Dim objBtnControl
Dim rsProj
'------------ Constants Declaration -----------
'------------ Variable Init -------------------
Set objBtnControl = New ActionButtonControl
'----------------------------------------------
%>
<%
'-----------------------------------------------------------------------------------------------------------------------
Function Get_Projects
Get_Projects = _
" SELECT * FROM projects ORDER BY proj_name ASC"
End Function
'-----------------------------------------------------------------------------------------------------------------------
%>
<%
'-------------Page Access Condition-------------------------------------------------------------------------------------
If NOT objAccessControl.IsActive("ConfigureBuildService") Then
Response.Redirect("message.asp?msg=401-9")
End If
%>