travisbrown
Technical User
- Dec 31, 2001
- 1,016
I've run up against a brick wall for this in ASP 3.0, so maybe there's something I can do in VB.NET.
I'm doing an XSL transformation by calling in local XSL and XML using a serverside XMLHTTP request, storing the results of each into a variable, then transforming.
The requested pages need to be executed before calling in because there is server-side processing needed on the files.
The problem is, I need to keep the execution of the requested pages in the session scope of the requesting page. There are various things I need to store in session values, and these values aren't available to the requested pages when using xmlhttp/
What would be ideal is to be able to put the results of a server.execute into a variable, because server.execute operates within the same scope as the host page. Alas, this seems not possible.
Any ideas?
I'm doing an XSL transformation by calling in local XSL and XML using a serverside XMLHTTP request, storing the results of each into a variable, then transforming.
The requested pages need to be executed before calling in because there is server-side processing needed on the files.
The problem is, I need to keep the execution of the requested pages in the session scope of the requesting page. There are various things I need to store in session values, and these values aren't available to the requested pages when using xmlhttp/
What would be ideal is to be able to put the results of a server.execute into a variable, because server.execute operates within the same scope as the host page. Alas, this seems not possible.
Any ideas?