(Created page with '{{Integration Introduction_2.x|language=ASP|ext=asp|classext=asp}} === Examples === To start the CKFinder, basically we need to do three things: * Create an instance of the CKFi…') |
(Article contents proof-read and formatted) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | __TOC__ |
+ | {{CKFinder_2.x Integration Introduction|language=ASP|ext=asp|classext=asp}} | ||
− | === | + | === Example === |
− | + | In order to launch CKFinder, you need to do three things: | |
− | * Create an instance of the CKFinder class. | + | * Create an instance of the <code>CKFinder</code> class. |
* Assign CKFinder properties. | * Assign CKFinder properties. | ||
− | * Call the | + | * Call the <code>Create</code> method. |
− | + | An example of creating CKFinder using an ASP class: | |
− | + | <source lang="asp"> | |
− | |||
− | < | ||
<% | <% | ||
Dim oFinder | Dim oFinder | ||
Line 18: | Line 17: | ||
oFinder.Create | oFinder.Create | ||
%> | %> | ||
− | </ | + | </source> |
− | |||
− | |||
− | + | For a full working examples please refer to the <code>_samples</code> directory. | |
− | + | == Integration methods == | |
+ | * [[/JavaScript|JavaScript integration]] – the preferred integration method, simple yet powerful. | ||
+ | * [[/JavaScript V1|JavaScript integration (V1)]] – the old "V1" way, useful when migrating from CKFinder 1.x because it makes it possible to reuse existing code. | ||
+ | * [[/ASP V1| ASP integration]] – if you have not worked with JavaScript before or the JavaScript integration seems to be too complicated, it might be the way to go for you. |
Latest revision as of 10:43, 21 November 2011
Introduction
Before reading this section, please read the installation and configuration instructions and make sure that the examples located in the _samples
directory are working correctly.
The _samples
directory contains HTML files with examples of launching CKFinder by using the JavaScript code as well as a asp
folder with examples of launching CKFinder by using the ASP language.
The following files are used when either the JavaScript or the ASP method of launching CKFinder is used:
-
ckfinder.js
in case of the JavaScript integration method, -
ckfinder_v1.js
in case of JavaScript V1 integration method (useful when migrating from CKFinder 1.x), -
ckfinder.asp
in case of the ASP integration method.
Example
In order to launch CKFinder, you need to do three things:
- Create an instance of the
CKFinder
class. - Assign CKFinder properties.
- Call the
Create
method.
An example of creating CKFinder using an ASP class:
<% Dim oFinder Set oFinder = New CKFinder oFinder.BasePath = "/ckfinder" oFinder.Width = "800" oFinder.Create %>
For a full working examples please refer to the _samples
directory.
Integration methods
- JavaScript integration – the preferred integration method, simple yet powerful.
- JavaScript integration (V1) – the old "V1" way, useful when migrating from CKFinder 1.x because it makes it possible to reuse existing code.
- ASP integration – if you have not worked with JavaScript before or the JavaScript integration seems to be too complicated, it might be the way to go for you.