Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active November 4, 2019 14:57
Show Gist options
  • Save bjoerntx/fed532afeb3cdce23b6958ae77cab515 to your computer and use it in GitHub Desktop.
Save bjoerntx/fed532afeb3cdce23b6958ae77cab515 to your computer and use it in GitHub Desktop.
<!-- Create TextControl and load document -->
<div class="tx-container">
@Html.TXTextControl().TextControl(settings =>
{
settings.Dock = DockStyle.Fill;
}).LoadText(Server.MapPath("~/App_Data/Documents/editing_images.tx"),
StreamType.InternalUnicodeFormat).Render()
</div>
...
<!-- Input for a local image -->
<input type="file" ... accept=".gif,.png,.jpg,.jpeg,.bmp,*" onchange="LoadLocalImage(this.files)">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment