View Single Post
  #2 (permalink)  
Old 08-16-03, 04:43 PM
Shane Shane is offline
Coding Addict
 
Join Date: Jun 2003
Location: Maryland, US
Posts: 268
Thanks: 0
Thanked 0 Times in 0 Posts
You can't dynamically load the #include tag.


You can, though, do something like this.

Code:
<html>
<head><title>Page Title</title>
</head>
<body>
Header stuff up here...

<%

If Request.Form("type") = "scripts" Then
' Put script form here. 
ElseIf Request.Form("type") = "files" Then
' Put files form here
Else
' Put selection buttons here

End If
%>

</body>
</html>
__________________
Shane Bauer
Microsoft Certified Professional (MCP) - ASP.NET
ASP/ASP.net, C#, VB/VB.NET, PHP, Perl, SQL
Reply With Quote