web-twain-document-scan-management

Web Document Scanning with ASP.NET Core MVC

This is a sample project that guides developer to integrate Dynamic Web TWAIN into an ASP.NET Core MVC project.

Requirement

Usage

  1. Configure the static files in Startup.cs:

     app.UseStaticFiles(new StaticFileOptions
     {
         FileProvider = new PhysicalFileProvider(
     Path.Combine(env.ContentRootPath, "../../sdk")),
         RequestPath = "/lib/dwt"
     });
    
  2. Request a free trial license and then update the license key in Views/Home/Index.cshtml:

     Dynamsoft.DWT.ProductKey = "LICENSE-KEY";
    
  3. Build and run the project:

     dotnet restore
     dotnet run
    
  4. Try the demo in your web browser.

    web document scanning with ASP.NET Core MVC

Blog

Building Web Document Scanning Applications with ASP.NET Core MVC