Ask a Question related to ASP.NET General, Design and Development.
-
Darlene Gauthier #1
PostRequestHandlerExecute event in global.asa
I am trying to add some tracking to all of the pages on our site. I
need to be able to access the session object and I want the tracking
to occur after the page has been processed. It looks like the
PostRequestHandlerExecute method is the proper one to use, but it
seems to run twice for each page hit. Does anyone know why this would
happen? Is there some value in the parameters that I could check for
to decide whether I should write out the tracking information or not?
Thanks in advance,
Darlene
Darlene Gauthier Guest
-
Getting Error: Event Type 'flash.event:event' is unavailable ?????
Hi, I am not using Cairngorm or anything, but trying to get an app built first without it then look into it. I am getting this error however... -
what is Global.asa event?
Is this some kind of test that you're doing? It look like it. Why don't you do and look in the documentation? http://msdn.microsoft.com/library ... -
Global Error handling in Applicatio_Error() of Global.asax
Hi all, For a web application if we are using web farm, and if i want to do Global Error handling can i use Applicatio_Error() method in... -
Assign Javascript event handler function dynamically to a Flash object event?
I have a Flash player object embedded in one of my web pages. I want to assign code to the OnReadyStateChange event for the object. Every... -
Help Please: 'Warning 5001 global variable "iF_timer" already defined in global scope
Hi there, I have just started to get this error: 'Warning 5001 global variable "iF_timer" already defined in global scope The variable name... -
Karl Seguin #2
Re: PostRequestHandlerExecute event in global.asa
I'm pretty sure it'll run for any user controls your page is loading also.
You can avoid the double hit by creating a basepage and having all pages
inherit from this page (Which in turn inherits from system.web.ui.page).
You can see a recent discussion on this at:
[url]http://groups.google.ca/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&frame=right&th=1cc5497b21b056a&seekm=lp6dnTb1noG A1I6iXTWJgA%40comcast.com#link1[/url]
Karl
"Darlene Gauthier" <dglfgauthier@yahoo.com> wrote in message
news:6f077bb7.0307230523.1176e0fd@posting.google.c om...> I am trying to add some tracking to all of the pages on our site. I
> need to be able to access the session object and I want the tracking
> to occur after the page has been processed. It looks like the
> PostRequestHandlerExecute method is the proper one to use, but it
> seems to run twice for each page hit. Does anyone know why this would
> happen? Is there some value in the parameters that I could check for
> to decide whether I should write out the tracking information or not?
>
> Thanks in advance,
>
> Darlene
Karl Seguin Guest



Reply With Quote

