All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
There are a couple of main factors responsible for the slow RadEditor's performance when pasting, loading, editing or saving large XHTML / HTML / TXT files, which content size exceeds 100KB:
<%@ Page Theme="Default" Language="vb" Debug="true" AutoEventWireup="true" CodeFile="DefaultVB.aspx.vb"Inherits="Telerik.Web.Examples.Editor.WorkingWithLargeContent.DefaultVB" %> <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> <link href="../Common/styles.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div class="demo-container size-wide"> <h2>Content with Size 1.25MB (1,313,683 bytes)</h2> <telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" ContentFilters="None" StripFormattingOptions="NoneSupressCleanMessage" Width="800px"> <Tools> <telerik:EditorToolGroup Tag="MainToolbar"> <telerik:EditorTool Name="FindAndReplace"></telerik:EditorTool> <telerik:EditorSeparator></telerik:EditorSeparator> <telerik:EditorTool Name="Cut"></telerik:EditorTool> <telerik:EditorTool Name="Copy"></telerik:EditorTool> <telerik:EditorTool Name="Paste" ShortCut="CTRL+V"></telerik:EditorTool> </telerik:EditorToolGroup> <telerik:EditorToolGroup Tag="Formatting"> <telerik:EditorTool Name="Bold"></telerik:EditorTool> <telerik:EditorTool Name="Italic"></telerik:EditorTool> <telerik:EditorTool Name="Underline"></telerik:EditorTool> <telerik:EditorSeparator></telerik:EditorSeparator> <telerik:EditorTool Name="ForeColor"></telerik:EditorTool> <telerik:EditorTool Name="BackColor"></telerik:EditorTool> <telerik:EditorSeparator></telerik:EditorSeparator> <telerik:EditorTool Name="FontName"></telerik:EditorTool> <telerik:EditorTool Name="RealFontSize"></telerik:EditorTool> </telerik:EditorToolGroup> </Tools> </telerik:RadEditor> </div> </form> </body> </html>