vote up 3 vote down star
4

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

flag

67% accept rate

4 Answers

vote up 4 vote down check

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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