vote up 1 vote down star

In Classic ASP, how do you detect on that the page got control via a Server.Transfer()?

I cannot compare the URL vs the current ASP filename because the code is stored in a library (included).

flag

2 Answers

vote up 0 vote down check

You can check if Request.ServerVariables("URL") matches the current page. For a Server.Transfer the URL is still the original page that was requested.

In response to your edit: The page needs to provide the current page name to the code in the library, otherwise the library has nothing that it can compare the requested URL to.

link|flag
Library code will not have any details about the calling page in order to make such a comparison, unless the calling page provides such details. – AnthonyWJones May 21 at 8:15
@AnthonyWJones: Naturally. As you can see, that was added to the question after I wrote the answer. – Guffa May 21 at 16:14
yeah the clarification was in response to the answer – notyetregistered May 26 at 16:12
vote up 0 vote down

There is no way to acheive this without some assistance from the page calling Transfer or the page to which execution is transfered. Probably the latter would be the best place to do this and tweak the library code to accept details from it about the transfer (if any).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.