up vote 4 down vote favorite
4
share [g+] share [fb]

Anyone have any idea when and why Page.OnLoad() executes twice in the ASP.NET lifecicle?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Do you have a an IMAGE element with a blank string for the URL on that page?

This one has caught so many people before :)

link|improve this answer
1  
Funny I posted the same Question a while back and yes <img src=""> was the culprit ! – The_AlienCoder Mar 26 '10 at 14:43
feedback

Make sure you don't have any tags like <img src="#"> or <img src="">, that makes IIS load the page twice. It's a classic.

link|improve this answer
feedback

Do you have AutoEventWireUp set to true and also attaching an event handler in code? This is a common reason.

link|improve this answer
feedback

Do you have any controls with AutoPostBack set to true ? That will cause the Page object to be recreated and therefore the PageLoad method will execute again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.