Although I've been doing some very basic (no pun intended) scripting with asp for a while now, I've never tried the server.execute command before.
I recently moved all my DSN connections into external files where they will be easier to change when I switch to a MySql db.
I then replaced the on-page connection code with HTML include directives for the appropriate external file for that connection. That of course forces the server to exit the script engine, process the html, and return to scripting.
I've now realized that server.execute is supposed to transfer to the file in the argument, run that code, and transfer back to the origination point. I have tried using something like server.execute("myIncludeFile.asp") but code in the target file is not running.
I can server.transfer("myIncludeFile.asp") and target code runs fine. But of course, that's just half of what I'm trying to do.
Any help with what I'm doing wrong is appreciated.
/*tom*/