Forum Moderators: open
The best alternative with classic ASP is to utilize Server.Execute. So you can do something like this:
Select Case lSomething
Case 1
Server.Execute "something-1.asp"
Case 2
Server.Execute "something-2.asp"
Case 3
Server.Execute "something-3.asp"
Case Else
Server.Execute "something-x.asp"
End Select