Multipe File Select to Upload when saving files to SQL-Server?

  •  04-11-2009, 1:53 PM

    Multipe File Select to Upload when saving files to SQL-Server?

    I was able to select multiple files to upload before attempting to save the files to DB.
     
    However, after making the proper changes to save files to Database, I cannot select multiple files any longer... Is there a config-setting I need to know about to make multi-select file enabled when saving the files to SQL-DB?
     
    As a side note, i need to mention I've changed all the insert files under ~\CuteSoft_Client\CuteEditor\Dialogs\

    <CE:Uploader id="myuploadFile" runat="server"></CE:Uploader>

    to

    <CE:Uploader id="myuploadFile" runat="server" UploadType="IFrame"></CE:Uploader>

     
     
    Here's my code settings to save the uploaded files in db:

    this.Editor1.SetSecurityGalleryPath("/");

    this.Editor1.SetSecurityImageGalleryPath("/");

    //base is my own class that creates the connections tring
    SqlFileStorage
    .ConnectionString = base.ConnectionString;
     
    this.Editor1.Setting["CuteEditorFileStorageType"] = typeof(SqlFileStorage).AssemblyQualifiedName;

    this.Editor1.Setting["DownFile"] = ResolveUrl(@"~/CuteSoft_Client/CuteEditor/SQLFileUpload/DownFile.aspx");

View Complete Thread