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 :)
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 :)
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.