|
|
|
|
|
|
|
<% foreach(SPCopyDestination dest in File.Item.CopyDestinations) { %>
<% if (dest.Type == SPCopyDestinationType.Update) { %>
|
<%SPHttpUtility.HtmlEncode(dest.FolderUrl,Response.Output);%>
|
<%SPHttpUtility.HtmlEncode(dest.LeafName,Response.Output);%>
|
<%SPHttpUtility.HtmlEncode(GetNameForId(dest.ModifiedBy),Response.Output);%>
|
<% } %>
<% } %>
|
|
|
|
|
|
|
|
<% foreach(SPCopyDestination dest in File.Item.CopyDestinations) { %>
<% if (dest.Type == SPCopyDestinationType.NoUpdate) { %>
|
<%SPHttpUtility.HtmlEncode(dest.FolderUrl,Response.Output);%>
|
<%SPHttpUtility.HtmlEncode(dest.LeafName,Response.Output);%>
|
<%SPHttpUtility.HtmlEncode(GetNameForId(dest.ModifiedBy),Response.Output);%>
|
<% } %>
<% } %>
|