%@LANGUAGE="VBSCRIPT"%> <%OPTION EXPLICIT%> <% '---------------------------------------- ' FILE: /legacy/projects/default.asp ' PROJECT: JBC ' Developed for JBC by ' Saltmine Creative, Inc. ' www.saltmine.com '---------------------------------------- 'Set the connection dim objConn : set objConn = DAGetPersistentConnection(c_strDAJBCConnection) dim rsArea dim rsResults dim intAreaId : intAreaId = 0 dim strArea : strArea = "Project Details" 'Retrieve the content 'Get areaId by Area Name Call DAExecuteQueryNoResults(objConn, rsArea, "SET NOCOUNT ON EXEC spGetAreasbyAreaName '" & DAODBCEncode(strArea) & "'") if not rsArea.eof then intAreaId = rsArea("AreaId") end if 'Get Content by AreaId if intAreaId > 0 then Call DAExecuteQuery(objConn, rsResults,"EXEC spGetContentbyAreaId " & intAreaId, false) end if %>
Jessie's Legacy - Status of Ongoing Projects