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="")
<!-- #INCLUDE file="../../ckeditor.asp" -->
After that script is included, you can use it in different ways, based on the following pattern:
dim editor set editor = New CKEditor
editor.basePath = "../../"
editor.replaceInstance "editor1"
editor.replaceAll empty
editor.editor "editor1", initialValue
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: