source: sandbox/filemanager/tp/fckeditor/_samples/asp/sample03.asp @ 1575

Revision 1575, 3.1 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implentação, melhorias do modulo gerenciador de arquivos

  • Property svn:executable set to *
Line 
1<%@ CodePage=65001 Language="VBScript"%>
2<% Option Explicit %>
3<!--
4 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
5 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
6 *
7 * == BEGIN LICENSE ==
8 *
9 * Licensed under the terms of any of the following licenses at your
10 * choice:
11 *
12 *  - GNU General Public License Version 2 or later (the "GPL")
13 *    http://www.gnu.org/licenses/gpl.html
14 *
15 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
16 *    http://www.gnu.org/licenses/lgpl.html
17 *
18 *  - Mozilla Public License Version 1.1 or later (the "MPL")
19 *    http://www.mozilla.org/MPL/MPL-1.1.html
20 *
21 * == END LICENSE ==
22 *
23 * Sample page.
24-->
25<% ' You must set "Enable Parent Paths" on your web site in order this relative include to work. %>
26<!-- #INCLUDE file="../../fckeditor.asp" -->
27<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
28<html>
29        <head>
30                <title>FCKeditor - Sample</title>
31                <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
32                <meta name="robots" content="noindex, nofollow">
33                <link href="../sample.css" rel="stylesheet" type="text/css" />
34                <script type="text/javascript">
35
36function FCKeditor_OnComplete( editorInstance )
37{
38        var oCombo = document.getElementById( 'cmbToolbars' ) ;
39        oCombo.value = editorInstance.ToolbarSet.Name ;
40        oCombo.style.visibility = '' ;
41}
42
43function ChangeToolbar( toolbarName )
44{
45        window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ;
46}
47
48                </script>
49        </head>
50        <body>
51                <h1>FCKeditor - ASP - Sample 3</h1>
52                This sample shows how to change the editor toolbar.
53                <hr>
54                <table cellpadding="0" cellspacing="0" border="0">
55                        <tr>
56                                <td>
57                                        Select the toolbar to load:&nbsp;
58                                </td>
59                                <td>
60                                        <select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden">
61                                                <option value="Default" selected>Default</option>
62                                                <option value="Basic">Basic</option>
63                                        </select>
64                                </td>
65                        </tr>
66                </table>
67                <br>
68                <form action="sampleposteddata.asp" method="post" target="_blank">
69<%
70' Automatically calculates the editor base path based on the _samples directory.
71' This is usefull only for these samples. A real application should use something like this:
72' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
73Dim sBasePath
74sBasePath = Request.ServerVariables("PATH_INFO")
75sBasePath = Left( sBasePath, InStrRev( sBasePath, "/_samples" ) )
76
77'This RegExp is used to sanitize recived toolbar parameter
78Dim oRegex
79Set oRegex = New RegExp
80oRegex.Global           = True
81oRegex.Pattern = "[^a-zA-Z]"
82
83Dim oFCKeditor
84Set oFCKeditor = New FCKeditor
85oFCKeditor.BasePath = sBasePath
86
87If Request.QueryString("Toolbar") <> "" Then
88        oFCKeditor.ToolbarSet = oRegex.Replace( Request.QueryString("Toolbar"), "" )
89End If
90
91oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
92oFCKeditor.Create "FCKeditor1"
93%>
94                        <br>
95                        <input type="submit" value="Submit">
96                </form>
97        </body>
98</html>
Note: See TracBrowser for help on using the repository browser.