1 <%@ codepage="65001" language="VBScript" %>
3 <!-- #INCLUDE file="../../ckeditor.asp" -->
6 ' You must set "Enable Parent Paths" on your web site
7 ' in order for the above relative include to work.
8 ' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
11 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
14 For licensing, see LICENSE.html or http://ckeditor.com/license
16 <html xmlns="http://www.w3.org/1999/xhtml">
18 <title>Sample - CKEditor</title>
19 <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
20 <link href="../sample.css" rel="stylesheet" type="text/css"/>
26 <!-- This <div> holds alert messages to be display in the sample page. -->
30 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
31 support, like yours, you should still see the contents (HTML data) and you should
32 be able to edit it normally, without a rich editor interface.
36 <!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
37 <fieldset title="Output">
38 <legend>Output</legend>
39 <form action="sample_posteddata.asp" method="post">
41 <label>Editor 1:</label><br/>
44 ' Create class instance.
45 dim editor, initialValue, code, textareaAttributes
46 set editor = New CKEditor
48 ' Do not print the code directly to the browser, return it instead
49 editor.returnOutput = true
51 ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
52 ' editor.basePath = "/ckeditor/"
53 ' If not set, CKEditor will default to /ckeditor/
54 editor.basePath = "../../"
56 ' Set global configuration (will be used by all instances of CKEditor).
57 editor.config("width") = 600
59 ' Change default textarea attributes
60 set textareaAttributes = CreateObject("Scripting.Dictionary")
61 textareaAttributes.Add "rows", 10
62 textareaAttributes.Add "cols", 80
63 Set editor.textareaAttributes = textareaAttributes
65 ' The initial value to be displayed in the editor.
66 initialValue = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ckeditor.com/"">CKEditor</a>.</p>"
68 ' Create first instance.
69 code = editor.editor("editor1", initialValue)
74 <label>Editor 2:</label><br/>
77 ' Configuration that will be used only by the second editor.
79 editor.instanceConfig("toolbar") = Array( _
80 Array( "Source", "-", "Bold", "Italic", "Underline", "Strike" ), _
81 Array( "Image", "Link", "Unlink", "Anchor" ) _
84 editor.instanceConfig("skin") = "v2"
86 ' Create second instance.
87 response.write editor.editor("editor2", initialValue)
90 <input type="submit" value="Submit"/>
97 CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
100 Copyright © 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
101 Knabben. All rights reserved.