my current project has one layout asp page
which consists of
-3 column css layout
-include files which contain asp subs
-calls to the above asp subs
my question is because all the code is in include files will this cause a performance issue?
do these pages get loaded all the time - even when not called?
if im not being clear, let me know!
an example of the construct for one column is below
which consists of
-3 column css layout
-include files which contain asp subs
-calls to the above asp subs
my question is because all the code is in include files will this cause a performance issue?
do these pages get loaded all the time - even when not called?
if im not being clear, let me know!
an example of the construct for one column is below
Code:
<!--#include file="sales.asp"-->
<!--#include file="support.asp"-->
<!--#include file="contact.asp"-->
<% 'x_page variable from database
Select Case x_page
'sales.asp
Case "1"
Call sales
'support
Case "2"
Call support
'support
Case "3"
Call contact
End Select%>