Format
Normal
Formatted
Address
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Numbered List
Bulleted List
Directory List
Menu List
Definition Term
Definition
Format
Font
Arial
Arial Black
Comic Sans MS
Courier
Courier New
Fixedsys
Georgia
Impact
Lucida Console
Lucida Sans Unicode
MS Sans Serif
MS Serif
Marlett
Modern
Palatino Linotype
Roman
Script
Small Fonts
Symbol
System
Tahoma
Terminal
Times New Roman
Trebuchet MS
Verdana
Webdings
Wingdings
Font
Size
1 (8 pt)
2 (10 pt)
3 (12 pt)
4 (14 pt)
5 (18 pt)
6 (24 pt)
7 (36 pt)
Size
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>