Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

ASP Control: On Page_Load event, markup control is null

0.00/5 (No votes)
21 Aug 2011CPOL 17.7K  
This situation is quite tricky and happens when you add a custom control to some page.

During page load, all child controls receive the OnLoad event. When you try to access controls defined in the control's markup in the OnLoad method override, all markup controls are NULL.


To solve this mysterious problem, you must register the custom control's tag using its relative URL path like:


ASP.NET
<%@ Register Src="~/CustomControls/MediaGalleryPostThumbnail.ascx" 
    TagName="MediaGalleryPostThumbnail" TagPrefix="CC" %>

MediaGalleryPostThumbnail.ascx is the implemented custom control here.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)