|
|
|
|
|
| | |
| |
Active Server Pages asp source code database MS SQL MS Access .mdb adovbs.inc cookies calendar codes sql commands scripts asp programming tutorials iis web server components 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|