N
Neil Gould
Hi Anthony,
Thanks to the various responses to my questions, I am getting a clearer
notion of how the asp.dll "sees" a "page".
Thanks, as this is consistent with what I've observed, but I haven't seen
explained anywhere. I think I've got it now.
Best,
Neil
Thanks to the various responses to my questions, I am getting a clearer
notion of how the asp.dll "sees" a "page".
OK. That would explain a lot.Anthony Jones said:Note that effectively anything between %> <% (that is anything outside of
the script delimiters) effectively becomes a Response.BinaryWrite which
sends the bytes found between a closing %> and an opening <%. The parser
having replaced %> <% and anything in between with such a psuedo binarywrite
now has pure script that it can parse. (Actually its a little more complex
than that but its a good working mental model).
AHA!Once the request processing is completed the Script context is reset
including the ScriptTimeout, the only data that can persist beyond that is
Session and Application.
Thanks, as this is consistent with what I've observed, but I haven't seen
explained anywhere. I think I've got it now.
Best,
Neil