ASP.Net HttpHandler ProcessRequest() firing twice
Posted
by Doug
on Stack Overflow
See other posts from Stack Overflow
or by Doug
Published on 2010-06-18T04:11:21Z
Indexed on
2010/06/18
4:13 UTC
Read the original article
Hit count: 393
ASP.NET
|httphandler
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);
}
© Stack Overflow or respective owner