Is it possible to reorder HtmlGenericControls that are statically put on a page? For example I have a menu that has a container element for each section. I want to reorder the position of the sections.
<!-- hard coded in master page frontend -->
<!-- In Masterpage frontend -->
<div runat="server" id="menuItem1">
</div>
<div runat="server" id="menuItem2">
</div>
<div runat="server" id="menuItem3">
</div>
Is there some way to reorder the display of the top three controls...
I know this is weird, so please try and stay focused on the question