vote up 1 vote down star

I mean, like php'h include...

something like

my_file_to_be_included = "include_me.asp"

-- >

for what I've seen so far, there are a couple of alternatives, but every one of them has some sort of shortcoming...

what I'm trying to figure out is how to make a flexible template system... without having to statically include the whole thing in a single file with a loooooong case statement...

here there are a couple of links

a solution using FileSysmemObject, just lets you include static pages

idem

yet another one

same thing from adobe

this approach uses Server.Execute

but it has some shortcomings I'd like to avoid... seems like (haven't tried yet) Server.Execute code runs in another context, so you can't use it to load a functions your are planning to use in the caller code... nasty...

same thing

I think this one is the same

this looks promising!!!

I'm not sure about it (couldn't test it yet) but it seems like this one dinamycally handles the page to a SSDI component...

any idea???

flag

36% accept rate

5 Answers

vote up 2 vote down

No you can't do a dyanmic include, period.

Your best shot at this is a server.execute and passing whatever state it needs via a Session variable:-

Session("callParams") = BuildMyParams() 'Creates some sort of string
Server.Execute(my_file_to_be_included)
Session.Contents.Remove("callParams")
link|flag
You CAN do dynamic includes. Have a look at the technique below... – atwrok8 Jun 17 at 19:40
@atwrok8: I don't think you have correctly understood the distinction between an execute and an include. – AnthonyWJones Jun 17 at 21:19
I understand the distinction between Server.Execute and the #include directive perfectly. Just because the term "dynamic include" is used, doesn't mean it has anything to do with the #include directive. In regard to classic asp, the term "dynamic include" is almost always used to describe the problem of using a piece of code dynamically, based on some runtime logic. The links supplied by opensas all point to various solutions to this problem, and I'm almost certain opensas isn't asking specifically about the #include directive. – atwrok8 Jun 17 at 22:03
vote up 0 vote down

I'm a bit rusty on classic ASP, but I'm pretty sure you can use the Server.Execute method to read in another asp page, and then carry on executing the calling page. 15Seconds had some basic stuff about it - it takes me back ...

link|flag
vote up 0 vote down

You should look into ExecuteGlobal. See example 3 at Using ExecuteGlobal to Include VBScript Code

link|flag
vote up 0 vote down

4guysfromrolla has a pretty good article on this.

link|flag
vote up 0 vote down

Sure you can do REAL classic asp dynamic includes. I wrote this a while back and it has opened up Classic ASP for me in a whole new way. It will do exactly what you are after, even though people seem to think it isn't possible!

Any problems just let me know

Reiss

link|flag
@atwork: This doesn't do an include and for the record just re-iterates what I've already stated in my answer the closest you can get it a Server.Execute. There is an important difference between an Execute and an Include. An execute uses a fresh new script context all the code and variables are enclosed in that context for the page executed. An include inserts code into the current script (before any code runs its a static thing) and then the whole code executes in the same context, sharing variables and functions. – AnthonyWJones Jun 17 at 21:18
I'll have a look at it... – opensas Jun 18 at 0:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.