JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _samples / asp / standalone.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                                 Editor 1:\r
42                         </p>\r
43                         <p>\r
44                         <%\r
45                                 dim initialValue, editor\r
46                                 ' The initial value to be displayed in the editor.\r
47                                 initialValue = "<p>This is some <strong>sample text</strong>.</p>"\r
48                                 ' Create class instance.\r
49                                 set editor = New CKEditor\r
50                                 ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:\r
51                                 '   editor.basePath = "/ckeditor/"\r
52                                 ' If not set, CKEditor will default to /ckeditor/\r
53                                 editor.basePath = "../../"\r
54                                 ' Create textarea element and attach CKEditor to it.\r
55                                 editor.editor "editor1", initialValue\r
56                         %>\r
57                                 <input type="submit" value="Submit"/>\r
58                         </p>\r
59                 </form>\r
60         </fieldset>\r
61         <div id="footer">\r
62                 <hr />\r
63                 <p>\r
64                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
65                 </p>\r
66                 <p id="copy">\r
67                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
68                         Knabben. All rights reserved.\r
69                 </p>\r
70         </div>\r
71 </body>\r
72 </html>\r