In my Global.asax file, I have an Application_BeginRequest subroutine that ensures that a user's "Active" attribute is set to true on each request. This is simply to determine whether the user is enabled or disabled.
If the attribute is set to false we transfer (using Server.Transfer) the user to an authorizationRequest page. This page has the master page referenced at the top, but the master page is not loading with the page when we are redirected to it.
This behavior seems unexpected to me. Am I missing a key piece of knowledge here to understand why this is occurring? Thanks in advance :)