X-Git-Url: https://scm.cri.minesparis.psl.eu/git/ckeditor.git/blobdiff_plain/256592bf803e851aa7fc953e08a6e9e58d970f8c..871bad8291b6dbc29d489d95d185458caab25158:/skins/ckeditor/_samples/asp/index.html diff --git a/skins/ckeditor/_samples/asp/index.html b/skins/ckeditor/_samples/asp/index.html new file mode 100644 index 0000000..76522bf --- /dev/null +++ b/skins/ckeditor/_samples/asp/index.html @@ -0,0 +1,103 @@ + + + + + ASP integration Samples List — CKEditor + + + +

+ CKEditor Samples List for ASP — CKEditor Sample +

+

+ Overview +

+

The ckeditor.asp file provides a wrapper to ease the work of creating CKEditor instances from classic Asp.

+

To use it, you must first include it into your page: + + <!-- #INCLUDE file="../../ckeditor.asp" --> + + Of course, you should adjust the path to make it point to the correct location, and maybe use a full path (with virtual="" instead of file="") +

+

After that script is included, you can use it in different ways, based on the following pattern:

+ +
    +
  1. + Create an instance of the CKEditor class: +
    dim editor
    +set editor = New CKEditor
    +
  2. +
  3. + Set the path to the folder where CKEditor has been installed, by default it will use /ckeditor/ +
    editor.basePath = "../../"
    +
  4. +
  5. + Now use one of the three main methods to create the CKEditor instances: + +
  6. +
+

Before step 3 you can use a number of methods and properties to adjust the behavior of this class and the CKEditor instances +that will be created:

+ + +

+ Basic Samples +

+ +

+ Advanced Samples +

+ + + +