Even if you follow the
instructions for nested controls you can come up against a problem that it displays all documents under each item instead of the documents under the current item.
1. Please try to specify the path for the nested control like:
Path='<%# Eval("NodeAliasPath")+ "%" %>'
2. Set up the DelayedLoading and StopProcessing properties to true and add the code like:
<cc1:CMSRepeater DelayedLoading="true" StopProcessing="true" …
<script runat="server">
protected void Page_PreRender(object sender, EventArgs e)
{
repeaterId.StopProcessing = false;
repeaterId.ReloadData(true);
}
</script>
-hg-