how can I get the document attachments to show in a repeater? this is what I have tried
<%@ Register Src="~/CMSInlineControls/DocumentAttachments.ascx" TagName="DocumentAttachments" TagPrefix="cms" %> <table> <tr> <td>Name:</td> <td><%# Eval("Name") %></td> </tr> </table> <cms:DocumentAttachments ID="pageAttachments" runat="server" ZeroRowsText="No documents available." TransformationName="cms.root.attachment" AttachmentGroupGUID="eae4c573-9c5e-4b53-941c-5be7609fc395" />
using this control fixed it. <%@ Register Src="~/CMSModules/Content/Controls/Attachments/DocumentAttachments/DocumentAttachments.ascx" TagName="DocumentAttachments" TagPrefix="cms" %>
Please, sign in to be able to submit a new answer.