| News
: |
| <%=Name%> |
| <%=Description%> |
| <%=FormatDate(LastUpdated, 2)%> |
<%if not rs.EOF then%>
| News Archive |
<%while not rs.EOF%>
"><%=rs("Name")%>
<%=FormatDate(rs("LastUpdated"), 2)%> |
<%
rs.movenext
wend
end if
rs.close
%>
| |
Home |
|
<%
strSQL = "select * from Projects where Status = 0 order by StartDate DESC"
rs.open strSQL, conn
if not rs.EOF then
%>
| In Progress.. |
<%
i = 0
while (not rs.EOF) and (i<4)
i = i + 1
%>
<%=rs("Domain")%>
<%
rs.movenext
wend
%>
|
<%
end if
rs.close
%>
<%
strSQL = "select * from Projects where Status = 1 order by CompletionDate DESC"
rs.open strSQL, conn
if not rs.EOF then
%>
| Recently Launched.. |
<%
i = 0
while (not rs.EOF) and (i<4)
i = i + 1
%>
" target="_self"><%=rs("Domain")%>
<%
rs.movenext
wend
%>
|
<%
end if
rs.close
%>
|