|
<blockquote id="quote"><font size="1" face="geneva, verdana, arial" id="quote">quote:<hr height="1" noshade id="quote"><%
Response.Write "executing included code now"
%>
<%
Response.write "done executing included code"
%><hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">
Just so you're aware, did you know that the include will actually be done BEFORE that Response.Write is executed. It doesn't come across the response.write, write it, then include the file.
Includes are ALWAYS processed first.
|