I have aspx page with two controls on it. Let's say I have two repeters:
In this example Repeater rImages is rendered first, then comes second one, rCategories.
My problem is I need sometime to change order of these two, to show first rCategories, then rImages, depending of the user's input.
Can I do this dynamically during run-time?
How do I approach this problem?
Thanks
Code:
<asp:Repeater ID="rImages" runat="server">
//content
</asp:Repeater>
<br />
<asp:Repeater ID="rCategories" runat="server">
//content
</asp:Repeater>
In this example Repeater rImages is rendered first, then comes second one, rCategories.
My problem is I need sometime to change order of these two, to show first rCategories, then rImages, depending of the user's input.
Can I do this dynamically during run-time?
How do I approach this problem?
Thanks