DocumentUltimate 1.7.0

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 1.7.0 - April 16, 2016
- Added: Example projects (Mvc.CS, Mvc.VB, WebForms.CS, WebForms.VB) to demonstrate main features.
- Added: Resizable and ResizeHandles properties to allow resizing the control by dragging sides.
- Improved: When IO exceptions occur and a dialog is shown to user, the physical path will be hidden for security purpose.
- Fixed: When no document is specified, an empty viewer will be displayed without any JS errors.
- Fixed: When using SetDocumentStream, the "Download" button failed because a copy of the original stream was not kept
 in cache folder. Now added a new parameter keepStreamCached to this method which is by default set to true.
 This parameter specifies whether to keep the copied stream in cache folder even after it is converted
 to a web-friendly format. If set to false, "Download" button will be disabled ("Download as PDF" button will be
 still available) because the viewer will not know how to access your original stream if it's not cached.
 For example if you are using DownloadUrl property then you will not need to keep a copy of the original stream in cache
 so you can set this to false in that case.
 
Version 1.6.0 - April 11, 2016
- Added: HighlightedKeywords property to specify the keywords to be highlighted when the document is displayed.
 For example, if you launch the document viewer from a search results page, you can pass the searched keywords.
- Added: LoadingMessage property to override the default message displayed while the document is being prepared for
 the first-time viewing. For example, you can override the default message for localization purpose.
- Improved: Server side errors while loading the document will be handled better and more detailed error messages will be
 displayed instead of a generic message.
- Improved: When session expires, a "Refresh page" dialog will be shown with a countdown of 10 seconds.
- Fixed: The document viewer failed with "Uncaught TypeError: $(...).block is not a function" when you included jQuery
 in the same page. From now on, document viewer's own jQuery version will not conflict with yours.
- Fixed: When SetDocumentStream method was used, the temporary stream in cache folder was left locked, thus it was not
 being deleted.