%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
' project_log.asp
' Display the project action log
'=====================================================
%>
<%
Option explicit
' Good idea to set when using redirect
Response.Expires = 0 ' always load the page, dont store
%>
<%
'' Make sure rtag_id is always present
'If Request("proj_id") = "" Then
' Call Destroy_All_Objects
' Response.Redirect("index.asp")
'End If
'------------ ACCESS CONTROL ------------------
%>
<%
'------------ Variable Definition -------------
Dim rsQryStr
Dim rsQry
Dim parProjId
Dim projName
'------------ Constants Declaration -----------
'------------ Variable Init -------------------
parProjId = Request("proj_id")
'----------------------------------------------
%>
<%
'----------------------------------------------------------------------------------------------------------------------------------------------
%>
<%
'------------ RUN BEFORE PAGE RENDER ----------
If (Request("action") <> "") Then
End If
%>