Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- Overview
- Installation & Deployement
- EO.Web ToolTip
- EO.Web Rating
- EO.Web Slider & RangeSlider
- EO.Web ListBox
- EO.Web ComboBox
- EO.Web Captcha
- EO.Web ASPX To PDF
- EO.Web Slide
- EO.Web Flyout
- EO.Web EditableLabel
- EO.Web ImageZoom
- EO.Web Floater
- EO.Web Downloader
- EO.Web ColorPicker
- EO.Web HTML Editor
- EO.Web File Explorer
- EO.Web SpellChecker
- EO.Web Grid
- EO.Web MaskedEdit
- EO.Web Splitter
- EO.Web Menu
- EO.Web Slide Menu
- EO.Web TabStrip
- EO.Web TreeView
- EO.Web Calendar
- EO.Web Callback
- EO.Web MultiPage
- EO.Web Dialog
- EO.Web AJAXUploader
- EO.Web ProgressBar - Free!
- EO.Web ToolBar - Free!
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
Working with Editor Contents |
Use Html property to get or set the editor contents. For example, the following code calls SaveText function (hypothetical, not provided by the Editor) to save the new HTML when Button1 is clicked:
private void Button1_Click(object sender, System.EventArgs e) { SaveText(Editor1.Html); }
The following code displays it back to the user:
Panel1.Text = Editor1.Html;
Note: If HtmlBodyCssClass has been used on the editor, you may wish to apply the same style on the container element, for example, on a Panel control that you may use to host the contents when displaying the text back to the user.