I have the following code for a multiple file uploader. Nothing special except for the extra textbox which I am using for capturing extra meta-data about the file.
<cutewebui:uploadattachments ShowFileIcons="true" id="uaMultipleDocuments" runat="server" InsertText="Select files to upload" >
<INSERTBUTTONSTYLE/>
<HeaderRowStyle CssClass="Heading" />
<ItemTemplate><asp:TextBox ID="txtDescription" runat="server"></asp:TextBox></ItemTemplate>
<ValidateOption MaxSizeKB="10240" />
</cutewebui:uploadattachments>
How do I add a header to the extra column with the textbox?? I haven't been able to find a property anywhere which will allow me to do this..