So I have a View control deinfed like this:
<control>
<key>ListAllocation</key>
<src>DesktopModules/CapacityPlanning/ListAllocation.ascx</src>
<type>View</type>
</control>
On a "menu" form I have this:
<asp:HyperLink ID="hypAllocation" runat="server" Enableview_state="False" />
and in the it's loaded in the page load with:
hypAllocation.Text = Localization.GetString("MenuViewAllocation", LocalResourceFile)
hypAllocation.NavigateUrl = NavigateURL("ListAllocation")
The link displays normally, and mousing over it displays as expected:
http://localhost:45203/Test/CPM/tabid/57/ctl/ListAllocation/Default.aspx
Unfortunately when I click on the link the menu ascx disappears but then all that is displays is a blank screen and the page load of the destination control never fires. I'm at a loss to figure out how to debug this.