Last active
November 4, 2019 14:57
-
-
Save bjoerntx/fed532afeb3cdce23b6958ae77cab515 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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