it means you have the page load event wired up twice so it fires twice. You can either use AutoEventWireup="true" or you can wire up events such as page load in the OnInit event with code, but you can't do both or the event(s) will fire twice.
Hope that helps,
Joe