JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _samples / asp / replaceall.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 for="editor1">\r
42                                         Editor 1:</label><br/>\r
43                                 <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
44                         </p>\r
45                         <p>\r
46                                 <label for="editor2">\r
47                                         Editor 2:</label><br/>\r
48                                 <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
49                         </p>\r
50                         <p>\r
51                                 <input type="submit" value="Submit"/>\r
52                         </p>\r
53                 </form>\r
54         </fieldset>\r
55         <div id="footer">\r
56                 <hr />\r
57                 <p>\r
58                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
59                 </p>\r
60                 <p id="copy">\r
61                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
62                         Knabben. All rights reserved.\r
63                 </p>\r
64         </div>\r
65         <%\r
66         ' Create class instance.\r
67         dim editor\r
68         set editor = New CKEditor\r
69         ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:\r
70         '   editor.basePath = "/ckeditor/"\r
71         ' If not set, CKEditor will default to /ckeditor/\r
72         editor.basePath = "../../"\r
73         ' Replace all textareas with CKEditor.\r
74         editor.replaceAll empty\r
75         %>\r
76 </body>\r
77 </html>\r