在 ASP.Net C# 中手动添加页面事件处理程序
当我过去构建应用程序时,我使用 AutoEventWireup 来处理页面事件。 据我所知,这会带来巨大的性能成本,我想在当前的应用程序中手动执行此操作。
设置事件处理程序的正确位置是什么?
我最初的想法是在我的代码隐藏文件中设置一个构造函数并在那里执行它,但我假设部分类的自动生成部分已经包含一个我将覆盖的构造函数。
很抱歉在这里问这么简单的问题。 看起来这应该很容易搜索,但我只是找不到我需要的答案。 先谢谢您的帮助。
When I've built applications in the past I've used AutoEventWireup to handle the page events for me. From what I've read this incurs a significant performance cost and I'd like to do it manually in my current application.
What is the correct place to set up the event handlers?
My initial thought was to just set up a constructor in my code behind file and do it there but I'm assuming that the auto generated portion of the partial class already contains a constructor that I'd be overriding.
I'm sorry to ask here on such a simple question. It seems like this should be easily searchable but I'm just not finding the answer I need. Thanks in advance for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于控件来说,它是
OnInit
,因为它们没有OnPreInit
。 老实说,我过去也曾对页面使用过 OnInit :)当然,您可以对页面所需的所有事件执行上述操作,而不定义任何事件处理程序。
For controls it's
OnInit
, since they have noOnPreInit
. To be honest I've usedOnInit
for pages as well in the past :)Of course, you could just do the above for all the events you need for your page, and define no event handlers whatsoever.