In case the document or string is already present at client-side, this document can be loaded with pure JavaScript into the editor.

This demo uses the MVC version of TXTextControl.Web included in TX Text Control .NET Server for ASP.NET. The functionality is compatible across all supported platforms.

Version 33.0

@Html.TXTextControl().TextControl(settings =>
{
settings.Dock = DockStyle.Fill;
}).Render()
<button onclick="LoadDocumentFromClient()" class="btn mt-3 btn-success">Load Document</button>
view raw test.cshtml hosted with ❤ by GitHub

No code required.

function LoadDocumentFromClient() {
var html = "This is some <b>HTML</b> text.";
var encoded = btoa(html); // btoa base-64-encodes strings.
TXTextControl.loadDocument(TXTextControl.StreamType.HTMLFormat, encoded);
}
view raw test.js hosted with ❤ by GitHub

No code required.

Next Sample

© 2025 Copyright Text Control GmbH and Text Control, LLC. All rights reserved. We documents.