Re: how to hide uploaded files grid in ajax uploader

  •  02-21-2013, 4:43 PM

    Re: how to hide uploaded files grid in ajax uploader

    In aspx page,

    <CuteWebUI:UploadAttachments InsertText="Upload Multiple files Now" runat="server" ID="Attachments1" OnPreRender="Attachments1_PreRender">
                 </CuteWebUI:UploadAttachments>

     

    In aspx.cs file,

     protected void Attachments1_PreRender(object sender, EventArgs e)
         {
             Attachments1.GetItemsTable().Visible = false;
            //Here you can bind the attachments with your grid
     
         } 

View Complete Thread