I have a custom control that I did not create. It is made up of many classes and is rendered dynamically. Perhaps none of that really matters.
The control renders properly on the first load when the Page_Init, Page_Load, etc. methods are called. However, when these events are not called then the control does not render properly.
How can I debug this?
The ASPX page itself has:
but there is so much inheritance that it gets confusing.
Any suggestions?
Thanks,
cj
The control renders properly on the first load when the Page_Init, Page_Load, etc. methods are called. However, when these events are not called then the control does not render properly.
How can I debug this?
The ASPX page itself has:
Code:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb" Inherits="ops_default" enableViewState="True" %>
Any suggestions?
Thanks,
cj
Comment