and all includes are included before any of the asp code is being interpreted.
So you can't do conditional includes in ASP 2.0
this:
<%
if X > 1 then
%>
<!--#include file="news_inc1.asp" -->
<%
else
%>
<!--#include file="news_inc2.asp" -->
<%
end if
%>
always includes both the include-file, even before the if...then...else..end if is being executed/interpreted.
Pierre
Join the Snitz WebRing