If you get two get requests then it would execute twice. You are adding the load event in oninit so that makes it execute once per request. Are you doing any redirects to the page? Have you tried using another client?
Main Topics
Browse All TopicsHi,
I have an aspx page that fires the page_load event twice. I've implemented AutoEventWireup=false in the page directive, and the cs file looks as below in the code box
I've stepped through the code, line by line, but the as soon as the page load event finishes, there is a delay and the Page_Load event is being fired again.
Is there any way I can check to see if something is making it call the page twice? I have looked in the IIS server logs, and there are two GET requests about 10 seconds apart for the same page.
Or is it something I am missing in the code below? Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: arturrrroPosted on 2009-10-22 at 06:03:00ID: 25633598
Just blind guesses:
If you have something like
<meta http-equiv="refresh" content="10" />
in the header of the web page it will just refresh it 10 second after the page load.
Also it is possible that there is some java script which is reloading the page after it is loaded.
I suggest to look at the HTML generated by this web page and search for "something" which can reload the web page.(like mentioned above META header or JS).