initial commit
[namibia] / public / scripts / ckeditor / _samples / asp / replaceall.asp
1 <%@  codepage="65001" language="VBScript" %>
2 <% Option Explicit %>
3 <!-- #INCLUDE file="../../ckeditor.asp" -->
4 <%
5
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"
9
10 %>
11 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
12 <!--
13 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
14 For licensing, see LICENSE.html or http://ckeditor.com/license
15 -->
16 <html xmlns="http://www.w3.org/1999/xhtml">
17 <head>
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"/>
21 </head>
22 <body>
23         <h1 class="samples">
24                 CKEditor Sample
25         </h1>
26         <!-- This <div> holds alert messages to be display in the sample page. -->
27         <div id="alerts">
28                 <noscript>
29                         <p>
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.
33                         </p>
34                 </noscript>
35         </div>
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">
40                         <p>
41                                 <label for="editor1">
42                                         Editor 1:</label><br/>
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>
44                         </p>
45                         <p>
46                                 <label for="editor2">
47                                         Editor 2:</label><br/>
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>
49                         </p>
50                         <p>
51                                 <input type="submit" value="Submit"/>
52                         </p>
53                 </form>
54         </fieldset>
55         <div id="footer">
56                 <hr />
57                 <p>
58                         CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
59                 </p>
60                 <p id="copy">
61                         Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
62                         Knabben. All rights reserved.
63                 </p>
64         </div>
65         <%
66         ' Create class instance.
67         dim editor
68         set editor = New CKEditor
69         ' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
70         '   editor.basePath = "/ckeditor/"
71         ' If not set, CKEditor will default to /ckeditor/
72         editor.basePath = "../../"
73         ' Replace all textareas with CKEditor.
74         editor.replaceAll empty
75         %>
76 </body>
77 </html>