Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 18, 2024 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/c28d18bea4b18f63daf2bc90e1208580 to your computer and use it in GitHub Desktop.
Save bjoerntx/c28d18bea4b18f63daf2bc90e1208580 to your computer and use it in GitHub Desktop.
@using TXTextControl.Web.MVC.DocumentViewer
@{
// use an access token (for example returned by OAuth)
var sAccessToken = "821e2f35-86e3-4917-a963-b0c4228d1315";
// build BasePath including access token in query string
var sProtocol = (Context.Request.IsHttps) ? "https://" : "http://";
var sBasePathURL = sProtocol + Context.Request.Host
+ "?access_token=" + sAccessToken;
}
<div style="width: 800px; height: 600px;">
@Html.TXTextControl().DocumentViewer(settings =>
{
settings.BasePath = sBasePathURL; // pass the base path
settings.Dock = DocumentViewerSettings.DockStyle.Fill;
}).Render()
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment