Problem Restricting Document Files by Extensions and Types

  •  06-04-2012, 12:50 PM

    Problem Restricting Document Files by Extensions and Types

    I'm trying to restrict the upload file types programmatically using the following command from the Cute Editor documentation:
     
          FileEditor.DocumentFilters = ".zip"
     
    But Visual Studio comes back with the compile error:
     
          'DocumentFilters' is not a member of 'CuteEditor.Editor'.
     
    I was able to set some other variables programmatcially just fine:
          FileEditor.SetSecurityMaxDocumentSize(921600)     
          FileEditor.SetSecurityMaxDocumentFolderSize(1024000) 
     
    Any idea what could be the problem with my use of the DocumentFilters command? I am using the latest version of CuteEditor which was downloaded earlier this morning from the website.
View Complete Thread