|
<%
'============ Beginning of ASP code (Inclusion inside a | tag) =======================
'============ View news headers from database ===========================================
RsGuestList.Open "select * from news order by NewsDate desc"
if not RsGuestList.EOF then
%>
<%else%>
|
No news are available at this time, please check again at a later time. |
| |
<%
end if
RsGuestList.close
set OBJdbConnection = Nothing
Set StrConn=Nothing
'============ End of ASP code ===========================================================
%> |