Joe
Joe

Reputation: 1

Page being loaded twice

I'm developing a ASP.NET 4.0 application with the Patterns and Practices MVP pattern. When I was debugging today I noticed that my page load was being fired twice. When I turned on Fiddler (A HTTP Traffic Monitoring Tool) I was able to pinpoint that my Page was actually being downloaded twice. I'm wondering if anyone has any idea what might be causing this?

Upvotes: 0

Views: 275

Answers (2)

Androiderson
Androiderson

Reputation: 17083

Also, img tags with no "src" attribute or pointing to a non-existing file can strangly trigger the Page Load event.

Upvotes: 0

Greg
Greg

Reputation: 16680

Make sure you don't have any image tags with "#" for source <img src="#"/>

Upvotes: 1

Related Questions