vote up 0 vote down star

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?

flag
Sounds like you answered your own question. Can you not use the protected override void OnPreRender syntax? – Matthew Jones Jul 22 at 20:56
Do you mean not fired or your handler not handling it? – Adrian Godong Jul 22 at 20:57
1  
Can you post some code of the Page_PreRender method and also the page directive? – Jeff Widmer Jul 22 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 at 19:41

3 Answers

vote up 0 vote down

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

This is the event that should be overriden and used.

protected override void OnPreRender(EventArgs e)
{
    base.OnPreRender(e);
}
link|flag
vote up 0 vote down

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

  • Visible property being set to false
  • Response.End()
link|flag

Your Answer

Get an OpenID
or

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