okay.. here goes. the page that I'm making opens web content, manually modifies specific areas of code within the site dynamically, then responds with my processed page.
my code starts by opening the requested page into an fso. it then checks the page for any asp code. if there is asp, I have to do a server.execute, because the asp code will not manually parse properly at this point. what I need is the final processed page from server.execute("blah.asp"

returned back to my referring page as if it had been a page opened without any asp content.
if no asp code was detected (or in theory if the page is processed and returned), then the code continues to modify the html items that I need to change dynamically. once this is done, the final page is returned to the browser.
i wish that it would be as easy as includes, but many many factors (some that I don't agree with, but have no option in changing) have led me to this very awkward point.
sooo... I have learned that simply assigning Server.Execute to a variable will not give the desired effect. Response.Write from blah.asp are sent directly to the actual response object, the variable in the referring page remains blank, and the page is displayed with the dynamic changes I need.
if my code before the server.execute does not provide any content for the response, then I can get around this by somehow dumping the content written to the Response into a variable and then clearing it, processing the var, and rewriting the Response.
Is it possible to read the Response buffer in any way? (hopingly)
Is there another option that I may be overlooking?
Thanks