|
|
|
|
|
| | |
|
PowerASP active server pages asp.net microsoft .net framework sdk learn asp what is asp tutorial learn asp.net CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: How to make dinamic inclusions of files |
From: |
Si |
Date: |
2/9/2003 7:05:10 AM |
IP: |
80.225.40.64 |
You could either use a Select Statement with the Server.Execute method (assuming you have ASP3.0)
<%
Select Case "action"
Case 1
Server.Execute("include1.asp")
Case 2
Server.Execute("include2.asp")
Case Else
Server.Execute("somethingElse.asp")
End Select
%> |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|