Customers who use our SDK via NuGet instead of installing it may find that they're missing the WebDocumentViewer and/or WebCapture resources for the client side components.
NuGet only hosts our DLLs. The ClientSide components need to be loaded elsewhere. If you absolutely want to use a package manager, you need to use Bower (deprecated) or NPM. There is information on this in a few tutorials
For the newest 11.4 just use the ones shipped in the SDK under
C:\Program Files (x86)\Atalasoft\DotImage 11.4\bin\WebResources\WebDocViewer\
and
C:\Program Files (x86)\Atalasoft\DotImage 11.4\bin\WebResources\WebCapture\
Or see the new
INFO: WDV in .NET 6 - Getting Started
For 11.3 and older,
See the section "Prerequisites (Clientside Scripts)" in our ASP.NET Core Whitepaper
See the section "Add packages for client-side" in Our ASP.NET Core Tutorial
Manual Install
To manually install the resources, you must acquire then, then in your Visual Studio project, add empty directory named WebCapture and or WebDocViewer and then copy the relevant files into them
Then, you'll need to link the scripts in your markup
Example
<head>
<script src="WebDocViewer/jquery-3.5.1.min.js" type="text/javascript"></script>
<script src="WebDocViewer/jquery-ui-1.13.1.min.js" type="text/javascript"></script>
<script src="WebDocViewer/raphael-min.js" type="text/javascript"></script>
<script src="WebDocViewer/clipboard.min.js" type="text/javascript"></script>
<script src="WebDocViewer/atalaWebDocumentViewer.js" type="text/javascript"></script>
<link href="WebDocViewer/jquery-ui-1.13.1.min.css" rel="Stylesheet" type="text/css" />
<link href="WebDocViewer/atalaWebDocumentViewer.css" rel="Stylesheet" type="text/css" />
// This next line is needed if you are using web capture
// if you are using WebCapture without WebDocViewer then you only need this line plus
// the include for /jquery-3.5.1.min.js from above
<script src="\WebCapture/atalaWebCapture.js" type="text/javascript"></script>
</head>
For convenience, we will put a direct link to the final 11.2 and the current 11.3 versions here. However, please note you can always get the latest from the current download for our SDK - (or for older versions [not recommended] you can use our Legacy Downloads.
- install the DotImage SDK then go to
- C:\Program Files (x86)\Atalasoft\DotImage 11.3\bin\WebResources\
- There you will find the WebDocViewer and WebCapture folders
NOTE you can change the 11.3 to the version you have installed such as 11.2 etc..
Convenience Links
AspNetCoreWebDocViewerResources_v11.3.0.3.zip
AspNetCoreWebDocViewerResources_v11.3.0.2.zip
AspNetCoreWebDocViewerResources_v11.3.0.1.zip
AspNetCoreWebDocViewerResources_v11.3.0.0.zip