PreRender 事件未触发
最近我注意到,Page_PreRender 事件没有被触发。 如果使用 protected override void OnPreRender
- 一切都很好。 AutoWire 已启用,相同的代码在另一台机器上执行得很好...
我应该在哪里挖掘?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一些事情可能会导致它不触发
There are a few things that can cause it to not fire
这是应该被覆盖和使用的事件。
This is the event that should be overriden and used.
我遇到了这个,看来你可以在 Web.Config 和 Machine.Config 中设置 AutoEventWireup。 http://support.microsoft.com/kb/324151
所以可能是 machine.config该服务器发生了一些事情。
可能值得一看。
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.