Hi,
I have a custom parent page ( eg name - xxxx) on the cms tree. And I m adding children pages and documents under the custom page (xxxx). I m using a repeater on custom parent page to display children pages on the parent page.
<table calss="doctable" width="634" height="111" style="border:1px solid black; margin: auto;">
<tr>
<td><a class="header bold" style="color: Black"><%# Eval("Title", true) %></a>
</td>
</tr>
<tr>
<td>Description: <%# Eval("DocDescription") %></td>
</tr>
<tr>
<td >
<a href="<%# Eval("PDF")%>">
<img height="32" width="30" title="pdf.png" src="/getattachment/Sample- htpss/pdf.png.aspx" alt="pdf.png">
</a>
</td>
</tr>
</table>
The issue is once I go to live site it doesn't reflect the order in the CMS tree, It always show newly added document at last.
Can someone hep me on this.