X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/e11f66eb655db8339a2d9b197b89f6c3b26099e1..579f65bc95a773bc6f8da75f6849ea49f365368b:/skins/ckeditor/_samples/asp/standalone.asp diff --git a/skins/ckeditor/_samples/asp/standalone.asp b/skins/ckeditor/_samples/asp/standalone.asp deleted file mode 100644 index 0f453e9..0000000 --- a/skins/ckeditor/_samples/asp/standalone.asp +++ /dev/null @@ -1,72 +0,0 @@ -<%@ codepage="65001" language="VBScript" %> -<% Option Explicit %> - -<% - - ' You must set "Enable Parent Paths" on your web site - ' in order for the above relative include to work. - ' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp" - -%> - - - - - Sample - CKEditor - - - - -

- CKEditor Sample -

- -
- -
- -
- Output -
-

- Editor 1: -

-

- <% - dim initialValue, editor - ' The initial value to be displayed in the editor. - initialValue = "

This is some sample text.

" - ' Create class instance. - set editor = New CKEditor - ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path: - ' editor.basePath = "/ckeditor/" - ' If not set, CKEditor will default to /ckeditor/ - editor.basePath = "../../" - ' Create textarea element and attach CKEditor to it. - editor.editor "editor1", initialValue - %> - -

-
-
- - -