JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _samples / asp / advanced.asp
1 <%@  codepage="65001" language="VBScript" %>\r
2 <% Option Explicit %>\r
3 <!-- #INCLUDE file="../../ckeditor.asp" -->\r
4 <%\r
5 \r
6         ' You must set "Enable Parent Paths" on your web site\r
7         ' in order for the above relative include to work.\r
8         ' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"\r
9 \r
10 %>\r
11 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
12 <!--\r
13 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
14 For licensing, see LICENSE.html or http://ckeditor.com/license\r
15 -->\r
16 <html xmlns="http://www.w3.org/1999/xhtml">\r
17 <head>\r
18         <title>Sample - CKEditor</title>\r
19         <meta content="text/html; charset=utf-8" http-equiv="content-type"/>\r
20         <link href="../sample.css" rel="stylesheet" type="text/css"/>\r
21 </head>\r
22 <body>\r
23         <h1>\r
24                 CKEditor Sample\r
25         </h1>\r
26         <!-- This <div> holds alert messages to be display in the sample page. -->\r
27         <div id="alerts">\r
28                 <noscript>\r
29                         <p>\r
30                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
31                                 support, like yours, you should still see the contents (HTML data) and you should\r
32                                 be able to edit it normally, without a rich editor interface.\r
33                         </p>\r
34                 </noscript>\r
35         </div>\r
36         <!-- This <fieldset> holds the HTML that you will usually find in your pages. -->\r
37         <fieldset title="Output">\r
38                 <legend>Output</legend>\r
39                 <form action="sample_posteddata.asp" method="post">\r
40                         <p>\r
41                                 <label>Editor 1:</label><br/>\r
42                         </p>\r
43 <%\r
44         ' Create class instance.\r
45         dim editor, initialValue, code, textareaAttributes\r
46         set editor = New CKEditor\r
47 \r
48         ' Do not print the code directly to the browser, return it instead\r
49         editor.returnOutput = true\r
50 \r
51         ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:\r
52         '   editor.basePath = "/ckeditor/"\r
53         ' If not set, CKEditor will default to /ckeditor/\r
54         editor.basePath = "../../"\r
55 \r
56         ' Set global configuration (will be used by all instances of CKEditor).\r
57         editor.config("width") = 600\r
58 \r
59         ' Change default textarea attributes\r
60         set textareaAttributes = CreateObject("Scripting.Dictionary")\r
61         textareaAttributes.Add "rows", 10\r
62         textareaAttributes.Add "cols", 80\r
63         Set editor.textareaAttributes = textareaAttributes\r
64 \r
65         ' The initial value to be displayed in the editor.\r
66         initialValue = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ckeditor.com/"">CKEditor</a>.</p>"\r
67 \r
68         ' Create first instance.\r
69         code = editor.editor("editor1", initialValue)\r
70 \r
71         response.write code\r
72 %>\r
73                         <p>\r
74                                 <label>Editor 2:</label><br/>\r
75                         </p>\r
76 <%\r
77 ' Configuration that will be used only by the second editor.\r
78 \r
79 editor.instanceConfig("toolbar") = Array( _\r
80                 Array( "Source", "-", "Bold", "Italic", "Underline", "Strike" ), _\r
81                 Array( "Image", "Link", "Unlink", "Anchor" ) _\r
82         )\r
83 \r
84 editor.instanceConfig("skin") = "v2"\r
85 \r
86 ' Create second instance.\r
87 response.write editor.editor("editor2", initialValue)\r
88 %>\r
89                         <p>\r
90                                 <input type="submit" value="Submit"/>\r
91                         </p>\r
92                 </form>\r
93         </fieldset>\r
94         <div id="footer">\r
95                 <hr />\r
96                 <p>\r
97                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
98                 </p>\r
99                 <p id="copy">\r
100                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
101                         Knabben. All rights reserved.\r
102                 </p>\r
103         </div>\r
104 </body>\r
105 </html>\r