NewSavePrintPrint PreviewSpell CheckSpell As You TypeFind and Replace
CutCopyPastePaste As TextUndoRedoSelect AllRemove FormatClean Word Format
Insert ImageInsert TemplateInsert TableInsert EmoticonInsert SymbolInsert Page BreakInsert Horizontal Rule
Fit To WindowHelp
Format
Font
Size
BoldItalicUnderlineJustify LeftJustify CenterJustify RightJustify FullInsert Numbered ListInsert Bulleted ListOutdentIndentForeground Color
Foreground ColorBackground Color
Background Color
Line Break As ParagraphProperties
DesignHTMLPreview

Saved Editor Content

Description
You can automatically save the editor content without a page postback using the Client-Side API methods
and AJAX callbacks. This sample demonstrates how you can send the editor content to a web service
using an AJAX callback and the web service saves the content to the file system or database or cloud
as explained in the "Editor Content" samples below the AutoSave sample.

Note that in order to make it work in your production environment, HTTP GET and HTTP POST must be
enabled by editing the Web.config file as follows:

<configuration>
    <system.web>
        <webServices>
            <protocols>
                <add name="HttpGet"/>
                <add name="HttpPost"/>
            </protocols>
        </webServices>
    </system.web>
</configuration>