This is an easy way to do true dynamic SSI includes.
<%
'My sample, customize this any way ya want..
'
Select Case Request.QueryString("page"
Case "history":
%> <!--#INCLUDE FILE="history.asp"-->
<%
Case "testing":
%> <!--#INCLUDE FILE="testing.asp"-->
<%
Case Else:
%> <!--#INCLUDE FILE="mainsite.asp"-->
<%
End Select
' I hope this was worth my posting!
I know once I decided to do this, it's made every page I've developed easier to make.
%>
<%
'My sample, customize this any way ya want..
'
Select Case Request.QueryString("page"
Case "history":
%> <!--#INCLUDE FILE="history.asp"-->
<%
Case "testing":
%> <!--#INCLUDE FILE="testing.asp"-->
<%
Case Else:
%> <!--#INCLUDE FILE="mainsite.asp"-->
<%
End Select
' I hope this was worth my posting!
I know once I decided to do this, it's made every page I've developed easier to make.
%>