Re: Using the MoveTo method wont show files after upload

  •  01-12-2012, 1:06 PM

    Re: Using the MoveTo method wont show files after upload

    Hi websitepro,
     
    If you do not want the user to delete the upload file, you can create your own attachment table, like the example below. I have removed the "remove" link for each file. 
     
    <%@ Page Language="C#" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <script runat="server">
       
       
        protected void Attachments1_PreRender(object sender, EventArgs e)
        {
            Attachments1.GetItemsTable().Visible = false;
            DataList1.DataSource = Attachments1.Items;
            DataList1.DataBind();
        }
     
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <div>
                <CuteWebUI:UploadAttachments InsertText="Upload Multiple files Now" runat="server"
                    OnPreRender="Attachments1_PreRender" ID="Attachments1">
                </CuteWebUI:UploadAttachments>
                <asp:DataList ID="DataList1" runat="server">
                    <ItemTemplate>
                        <table cellpadding="0" cellspacing="0" border="0" style="border-top: solid 1px #ededed;
                            border-bottom: solid 1px #ededed;">
                            <tr>
                                <td style="border-left: solid 1px #ededed; width: 40px">
                                    <img src="CuteWebUI_Uploader_Resource.axd?type=file&file=circle.png&_ver=634009764514705972" /></td>
                                <td style="border-left: solid 1px #ededed;border-right: solid 1px #ededed; width: 300px">
                                    <%# Eval("FileName") %>
                                    (
                                    <%# Eval("FileSize") %>
                                    Byte )
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </asp:DataList>
            </div>
        </form>
    </body>
    </html>
     
    Regards,
     
    Ken 
View Complete Thread