ASP.Net HttpHandler ProcessRequest() firing twice
- by Doug
Hi there,
I have a strange issue where i have a a HttpHandler having its ProcessRequest() event firing twice.
i have nothing else in the class except a pointer to a static method so i'm lost.
I have done some googling to no avail even thought it appears a few people are having similar issues:
Code:
public bool IsReusable
{
get { return true; }
}
public void ProcessRequest(HttpContext context)
{
Common.Tracker.TrackPageView(context);
}