Hi,
Telerik features in our application have not been upgraded since the launch of the system (2003), and our users have cited that these functions are not user friendly and lack functionality in comparison to features available in Word.
- RadEditor Version = 5.6.4.0
- RadSpell.dll Version = 2.6.1.0
As we upgrade our applicaction to .net Framework 3.5, I am performing feasibility study of updating to see if the following items could be resolved ot added.
Our Issues:
I would appreciate your help on the above questions. Would you also please let me know which version of Telerix is needed to be downloaded to gain 3 above functionalities. Is theer any othe components is needed?Also could you please let me know if I need to change the code or not?
Thank you inadvance for your help.


Line 9: <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
I've checked Windows/assembly for the dll's and they're present. I was also getting this error before I ran the SP installer.<%@ Page Language="C#" %> <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <script runat="server"> protected void btnGo_Click(object sender, EventArgs e) { Response.Write(tbPayeeLine1.Text); }</script><html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <title>RadControls for ASP.NET AJAX</title> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <telerik:RadInputManager ID="RadInputManager1" runat="server"> <telerik:TextBoxSetting BehaviorID="PayeeLine1Behavior" EmptyMessage="Enter Payee / Beneficiary Name Here" ErrorMessage="Payee/Beneficiary Required" Validation-IsRequired="true" Validation-ValidationGroup="ValGrpPayeeInfo"> <TargetControls> <telerik:TargetInput ControlID="tbPayeeLine1" /> </TargetControls> </telerik:TextBoxSetting> </telerik:RadInputManager> <asp:TextBox ID="tbPayeeLine1" name="payee" runat="server" MaxLength="33" Width="300px" /><asp:Button ID="btnDisable" runat="server" Text="Disable" OnClientClick="DisableTextBox();return false;"></asp:Button><asp:Button ID="btnGo" runat="server" Text="Go" onclick="btnGo_Click"></asp:Button><script type="text/javascript"> function DisableTextBox() { debugger; var tb = $find("<%= RadInputManager1.ClientID %>").get_targetInput("<%= tbPayeeLine1.ClientID %>"); //tb.disable() alert(tb.get_value()); document.getElementById('<%= tbPayeeLine1.ClientID%>').disabled = true; } </script> </form> </body> </html>Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs)Dim newWindow As Telerik.Web.UI.RadWindow = New Telerik.Web.UI.RadWindow() Dim hyper As String hyper = "GeoCode.aspx?field1=" + Street + "&field2=" + City + "&field3=" + Zip newWindow.NavigateUrl = hyper newWindow.Top = Unit.Pixel(22) newWindow.Left = Unit.Pixel(0) newWindow.Width = 300 newWindow.Height = 800 form1.Controls.Add(newWindow) newWindow.VisibleOnPageLoad = TrueEnd Subfunction CloseFunction() { var oWnd = GetRadWindow(); oWnd.Close(); oWnd.VisibleOnPageLoad = false; oWnd.BrowserWindow.location.reload(); }