I use the code below in my template to show a list of all child pages.
Links are returned in the order of the menu hierarchy however I want the links to be returned in alphabetical order.
<ul id="SectionPageList">
<% control Menu(2) %>
<% if Children %><% else %><li><a href="$Link" title="Go to the $Title.XML page">$MenuTitle.XML</a></li><% end_if %>
<% if Children %>
<% control Children %>
<li><a href="$Link" title="Go to the $Title.XML page">$MenuTitle.XML</a></li>
<% end_control %>
<% end_if %>
<% end_control %>
</ul>