FileUltimate.NuGetOrg 5.21.0

Suggested Alternatives

GleamTech.FileUltimate

Additional Details

This package has been renamed to GleamTech.FileUltimate, please install the latest version of GleamTech.FileUltimate instead of this package.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package FileUltimate.NuGetOrg --version 5.21.0
NuGet\Install-Package FileUltimate.NuGetOrg -Version 5.21.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FileUltimate.NuGetOrg" Version="5.21.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FileUltimate.NuGetOrg --version 5.21.0
#r "nuget: FileUltimate.NuGetOrg, 5.21.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FileUltimate.NuGetOrg as a Cake Addin
#addin nuget:?package=FileUltimate.NuGetOrg&version=5.21.0

// Install FileUltimate.NuGetOrg as a Cake Tool
#tool nuget:?package=FileUltimate.NuGetOrg&version=5.21.0

File Manager Control for ASP.NET WebForms and ASP.NET MVC 3+ (.NET Framework 4.0+).
Integrate a file manager into your ASP.NET application or site rapidly.
- Browse and manage files with access control.

- Accept files with the advanced upload functionality.

- Offer a structured and neat download area.

- Preview documents (70+ file formats, including PDF © Microsoft Office), images, audios and videos.

Note: This package contains a fully working version of the product, however without a license key it will run in trial mode.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

## Version 5.21.0 - March 30, 2018

 - **Fixed:** Document Viewer was broken ("engine not found" errors) in v5.20.5 due to obfuscation.

 - **Added:** Implemented own routing for better CMS compatibility (e.g. SiteFinity, DotNetNuke)
   CMSs usually take over and clear System.Web.Routing.RouteTable so as a result resource and component handlers
   were not accessible (HTTP 404 errors) unless you called FileUltimateConfiguration.RestoreRoutes method.
   Removed FileUltimateConfiguration.RestoreRoutes method as it's no longer necessary.

 - **Fixed:** IE 8 support was broken, FileManager failed to load with errors in browser console. Now it will render
   as expected.

 - **Fixed:** "Open" action (open in browser) in FileManager failed with HTTP 404 error for files in very deep folders.
   This happened because the generated URL for "Open" action was too long. IIS and ASP.NET usually have 255 character
   limit by default in URL path part (due to legacy Windows limit).
   The reason we generated a long URL path was specially for being able to view HTML files which has references
   to css and images (e.g. ../images/image1.jpg). This way relative paths inside the HTML work and images are not broken.
   However when you open a .txt file or .pdf file in browser this path in URL is pointless so from now on this
   feature will be limited to .html or .html files. So for file types other than HTML, the path is moved
   to querystring (parts after ? by default allow long strings) to prevent HTTP 404 error in very deep folders.

 - **Improved:** Document Viewer and image thumbnailer/viewer stability.