Hi,
I have a weird behavior in my app's prod environment. Prod env has 3 servers and in one of the servers, page redirection causes the Application_EndRequest event to be fired; other two works as expected. I want to avoid the EndRequest event to be fired on page redirect. I am using Response.Redirect(url). I tried using Response.Redirect(url, false); HttpContext.Current.ApplicationInstance.CompleteRequest(); Both of them triggers the Endrequest event. I am not sure whether its specific to that server alone.
The real problem is key session variables are reset when the application starts over again during Response.Redirect is executed which causes the application to error out. Is there a way to find the real cause of this problem? I am trying to solve this for past two days but no success.
My Prod severs are 64bit.
Can anyone help in this regard? Your help is greatly appreciated. Thanks. ~/Ananth