Läste följande på MSDN:
Avoid the Autoeventwireup Feature
Instead of relying on autoeventwireup, override the events from Page. For example, instead of writing a Page_Load() method, try overloading the public void OnLoad() method. This allows the run time from having to do a CreateDelegate() for every page.
Jag har undrat lite då och då varför jag har AutoEventWireup="True" i mitt Page-directive, men aldrig kollat upp det så noga.
Tyvärr förstog jag inte riktigt vad filurerna på MSDN menade med det hela, så jag tänkte att någon vänlig själ här kanske kunde förklara det för mig.