Installation Guide

The following guide shows the steps to implement a RichTextEditor Control into ASP.NET applications. If you haven't downloaded the software, please download it from here.

1. Install RTE

The "richtexteditor" folder and all files it contains should be deployed to the application directory of your website.

2. Using the Editor in a PHP page

a. Register RichTextEditor control in your page

<?php require_once "richtexteditor/include_rte.php" ?>

b. Insert a RTE instance into the page and use $rte->Text property to load content into the RTE.

$rte=new RichTextEditor();
$rte->Text="Type here";
$rte->MvcInit();
$rte->RenderSupportAjax=false;
echo $rte->GetString();