母版页和内容页中的页面事件
问题是我有一个母版页和一个内容页。我在内容页中有一个 LoadComplete,在母版页中有一个 PreRender。问题是我在内容页面的 LoadComplete 事件服务器端更改的内容页面上的 html 控件之一。 我还有一些用于禁用母版页 PreRender 事件上的控件的代码。 由于某种原因,除了我在 LoadComplete 端更改的控件之外,aspx 端的所有控件都会经过母版页预渲染。 我如何确保加载整个内容页面,然后调用母版页 PreRender 事件,使所有控件都经过该事件。
The thing is i have a Master page and a Content Page. I have a LoadComplete in Content Page and a PreRender in Master Page. The problem is one of my htmlcontrols on content page i change on the LoadComplete event server side of the content page.
I also have some code for disabling controls on the Master Page PreRender event.
For some reason all controls on the aspx side go through the Master Page prerender except the ones that i change on the LoadComplete side.
How can i make sure the entire content page loads and then the Master Page PreRender event is called, making all the controls go through that event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要仔细查看这篇有关 asp.net 页面生命周期的文档。
它将准确解释页面事件发生的顺序。
http://msdn.microsoft. com/en-us/library/ms178472.aspx
You need to carefully review this document on the asp.net page lifecycle.
It will explain exactly what order page events occur in.
http://msdn.microsoft.com/en-us/library/ms178472.aspx