Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 2, 2023 13:35
Show Gist options
  • Save bjoerntx/f04ecc369cf4f0d31729043588434460 to your computer and use it in GitHub Desktop.
Save bjoerntx/f04ecc369cf4f0d31729043588434460 to your computer and use it in GitHub Desktop.
@using TXTextControl.Web.MVC.DocumentViewer
@using System.Text
<div style="width: 800px; height: 600px;">
@Html.TXTextControl().DocumentViewer(settings => {
settings.DocumentData = Convert.ToBase64String(ViewBag.Document);
settings.Dock = DocumentViewerSettings.DockStyle.Fill;
settings.DocumentLoadSettings.PDFJS.BasePath = "lib/pdf.js/";
}).Render()
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment