Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
In the sample above we have attached two RadSpell controls to a single TextBox, each configured to use a different dictionary path. This technique is convenient if you want to provide different dictionaries and custom dictionaries to your users.
<%@ Page CodeFile="DefaultCS.aspx.cs" Language="C#" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Spell.DifferentDictionaries.DefaultCS" %> <%@ 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> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <qsf:MessageBox ID="InformationBox1" runat="server" Type="Info" Icon="Info"> Make sure the ASP.NET user account has write permissions for en-US-Sally.txt and en-US-John.txt in "~/App_Data/RadSpell/" </qsf:MessageBox> <div class="demo-container size-narrow"> <asp:TextBox ID="textBox1" runat="server" width="100%" Height="100px" TextMode="MultiLine">Thisz is a server side TextBox with some delibirate mistakees.</asp:TextBox> <br /> <br /> <telerik:RadSpell RenderMode="Lightweight" ID="spell1" runat="server" ControlToCheck="textBox1" ButtonType="LinkButton" CustomDictionarySuffix="-John"></telerik:RadSpell> with the Default(John's) custom dictionary <br /> <br /> <telerik:RadSpell RenderMode="Lightweight" ID="spell2" runat="server" ControlToCheck="textBox1" ButtonType="LinkButton" CustomDictionarySuffix="-Sally"></telerik:RadSpell> with a different custom dictionary </div> </form> </body> </html>