up vote 2 down vote favorite
1
share [g+] share [fb]

Recently i've noticed, that the Page_PreRender event is not being fired. If protected override void OnPreRender is used - everything is fine. AutoWire is enabled and the same code performs just fine on another machine...

Where should i dig?

link|improve this question
Sounds like you answered your own question. Can you not use the protected override void OnPreRender syntax? – Matthew Jones Jul 22 '09 at 20:56
Do you mean not fired or your handler not handling it? – Adrian Godong Jul 22 '09 at 20:57
2  
Can you post some code of the Page_PreRender method and also the page directive? – Jeff Widmer Jul 22 '09 at 20:58
Matthew Jones: The issue is that it used to work and stopped on one isolated server. Still works fine on other machines Adrian Godong: Basically if I put a breakpoint inside the method it never breaks there Jeff Widmer: Everything is definitely fine there, because exact same page works on a different server. Basically, does anyone know a global server setting that prevents AutoEventWireup from working? – Vasili Sviridov Jul 23 '09 at 19:41
feedback

3 Answers

This is the event that should be overriden and used.

protected override void OnPreRender(EventArgs e)
{
    base.OnPreRender(e);
}
link|improve this answer
feedback

I came across this and it appears you can set the AutoEventWireup in Web.Config and Machine.Config. http://support.microsoft.com/kb/324151

So maybe the machine.config on that server has got something going on.

Might be worth looking at.

<configuration>    
<system.web>
<pages autoEventWireup="true|false" />
</system.web>
</configuration>
link|improve this answer
feedback

There are a few things that can cause it to not fire

  • Visible property being set to false
  • Response.End()
link|improve this answer
Visible property was my problem...not a terribly intuitive thing. – Chris B. Behrens Oct 4 '11 at 17:49
feedback

Your Answer

 
or
required, but never shown

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