<div style="color:#009900;">
<p>
This text is in the <strong>server_target.asp</strong> file, but remember that the
context from the calling page is passed when the target file is executed. That
means that calls to things like Request.ServerVariables("SCRIPT_NAME") may not
return the value you might expect.
</p>
<p>
<strong>Request.ServerVariables("SCRIPT_NAME"):</strong>
<%= Request.ServerVariables("SCRIPT_NAME") %>
</p>
<p>
Even though the line of code being executed is actually located in server_target.asp,
it's still running in the context of the original page which, in this case, is
server_execute.asp.
</p>
</div>