当 .ascx 控件设置为可见时,会调用什么事件? 该如何处理呢?
如果我将 .ascx 控件的可见属性设置为 true,则会调用什么事件? 我可以在该控件的代码隐藏中创建什么方法来处理此事件?
谢谢 :)
If I set a .ascx control's visible attribute to true, what event is called? What method can I create in that control's codebehind to act on this event?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有引发任何事件。 但是您可以为 PreRender 事件添加一个处理程序,并检查控件的 Visible 属性是否设置为 True 或 False。
No event is raised. But you can add a handler for the PreRender event and check there whether the control's Visible property is set to True or False.