admin
FCKeditor
_samples
_plugins
afp
asp
sample01.asp
sample02.asp
sample03.asp
sample04.asp
sampleposteddata.asp
cfm
html
lasso
perl
php
py
default.html
sample.css
sampleslist.html
editor
_documentation.html
_upgrade.html
_whatsnew.html
fckconfig.js
fckeditor.afp
fckeditor.asp
fckeditor.cfc
fckeditor.cfm
fckeditor.js
fckeditor.lasso
fckeditor.php
fckeditor.pl
fckeditor.py
fckeditor_php4.php
fckeditor_php5.php
fckpackager.xml
fckstyles.xml
fcktemplates.xml
htaccess.txt
license.txt
Uebersicht1
Uebersicht2
import
kompetenzscheine
livesearch
adm_anleg.php
adm_bearb.php
adminrechte.php
adminrechte_del.php
anmschluss.php
anwesenheit.php
ausg_aush.php
ausgabe.php
bearbeiten.php
cross.jpg
detailansicht.php
doz_anleg.php
doz_bearb.php
doz_del.php
erfassen.php
expo.php
export.php
hauptframe.htm
hauptframe_jahr.php
index.php
jahrgang.php
kennwortwechsel_admin.php
kompetenz_bearbeiten.php
kompetenzbescheinigung_admin.php
ldap_search.php
liste.php
livesearch_stud.php
login_doz.php
login_log.php
logout_admin.php
mail.php
mail_doz.php
mail_sozkom.php
mail_unangemeldet.php
mailadressen.php
mailcompare.php
menuframe.php
menuframe_28.09.2005.php
noteneingabe_admin.php
ok.gif
pass_back.php
registrierung.php
sozkom_del.php
sozkom_useronline.php
sozkomliste.php
stud_bearb.php
stud_neubelegen.php
studbeleg.php
suche.php
topframe.htm
ubersicht.php
ubersicht_prio.php
ubersicht_sozkomthemen.php
unangemeldet.php
doz
html2pdf_v4.03
htmlpurifier-4.10.0
images
kompetenz
prints
prints2
prints3
Kennwortwechsel.php
hauptframe.php
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
topframe.php
63 lines
2.1 KiB
Plaintext
Executable File
63 lines
2.1 KiB
Plaintext
Executable File
<%@ codepage="65001" language="VBScript" %>
|
|
<% Option Explicit %>
|
|
<!--
|
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
|
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
|
|
*
|
|
* == BEGIN LICENSE ==
|
|
*
|
|
* Licensed under the terms of any of the following licenses at your
|
|
* choice:
|
|
*
|
|
* - GNU General Public License Version 2 or later (the "GPL")
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
|
* http://www.gnu.org/licenses/lgpl.html
|
|
*
|
|
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
|
* http://www.mozilla.org/MPL/MPL-1.1.html
|
|
*
|
|
* == END LICENSE ==
|
|
*
|
|
* Sample page.
|
|
-->
|
|
<% ' You must set "Enable Parent Paths" on your web site in order this relative include to work. %>
|
|
<!-- #INCLUDE file="../../fckeditor.asp" -->
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>FCKeditor - Sample</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
<link href="../sample.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
FCKeditor - ASP - Sample 1
|
|
</h1>
|
|
<div>
|
|
This sample displays a normal HTML form with an FCKeditor with full features enabled.
|
|
</div>
|
|
<hr />
|
|
<form action="sampleposteddata.asp" method="post" target="_blank">
|
|
<%
|
|
' Automatically calculates the editor base path based on the _samples directory.
|
|
' This is usefull only for these samples. A real application should use something like this:
|
|
' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
|
|
Dim sBasePath
|
|
sBasePath = Request.ServerVariables("PATH_INFO")
|
|
sBasePath = Left( sBasePath, InStrRev( sBasePath, "/_samples" ) )
|
|
|
|
Dim oFCKeditor
|
|
Set oFCKeditor = New FCKeditor
|
|
oFCKeditor.BasePath = sBasePath
|
|
oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."
|
|
oFCKeditor.Create "FCKeditor1"
|
|
%>
|
|
<br />
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
</body>
|
|
</html>
|