On the other hand, there is server.execute for IIS5 (win2k), which can take a dynamically generated string and execute the code in the asp script named by the string.
Server.Execute doesn't solve all problems. First, it's only available on IIS5 which eliminates it's use unless you have a controlled server environment. Another issue is the scope of variables, from what I hear.
quote: Server.Execute doesn't solve all problems. First, it's only available on IIS5 which eliminates it's use unless you have a controlled server environment. Another issue is the scope of variables, from what I hear.
====== Doug G ======
Didn't think of that scope issue. It may be another interesting hard problem...