FreeTextBox is a free Asp.net web page editor. The official default is the English version. This version is set to the Simplified Chinese version. You can set text styles, online typesetting, image uploads, etc. (FreeTextBox source code needs to be purchased separately for authorization). The code includes The demonstration and implementation process of various applications includes: function settings, drop-down display, multi-language (including simplified Chinese, traditional, English, etc.) switching, JS calling, WebParts application, Ajax non-refresh interaction
Directly used method:
(1) Copy the FreeTextBox.dll file in the bin directory to the bin directory in your Web application directory;
(2) Copy the three files in the HelperScripts directory to your Web application directory or its subdirectory. Be sure to specify the HelperFilePath attribute when using;
Assume that three files are placed in the helpfile directory under the application: this.FreeTextBox1.HelperFilesPath="helpfile"; which points to this directory.
(3) Copy the ftb directory under the images directory to the images directory under the root directory of your Web site. This directory contains various skin pictures of the interface
(4) Create an images directory in the application directory. This directory is used to upload pictures to the picture library. It must be there, otherwise the inserted pictures will not be available.
(5) Usage: Create the corresponding WEB form in the application and add <%@ Register TagPrefix="ftb" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %> to the header of the HTML code page. Introduce the control tag and copy to the required position on the page
You can also add controls to the toolbar and use them by dragging them directly.
In the folder, there is FreeTextBox.dll that can be used in various environments of Asp.net1.1/2.0/3.5
Expand