Search

You searched for the word(s): .net 4.0
Showing page 121 of 1,307 (13,069 total posts) < 1 second(s)
  • Re: Hi guys, question about browser security and cute editor

    obiwantcp,   Thanks for the nice comments about CuteEditor.   The JavaScripts in the Editor Preview pane is disabled.   However the JavaScripts are supported in CuteEditor as ong as you set EnableStripScriptTags property to false:   Editor.EnableStripScriptTags Property  Specifies whether to remove inject script ...
    Posted to Cute Editor for .NET (Forum) by Adam on April 10, 2006
  • Re: Cute editor converting special characters oddly... &S217; ??

    Strange.   Can you  reproduce the problem in the following link?   http://cutesoft.net/example/general.aspx   Also you can try set Editor.UseHTMLEntities Property to false.  Editor.UseHTMLEntities Property   By default Cute Editor maps most special characters to the equivalent HTML entity automatically. ...
    Posted to Cute Editor for .NET (Forum) by Adam on April 3, 2006
  • Re: Problem with the cute editor in MAC OS

    Vikas, Which version of CuteEditor are you using? Online HTML Editor for Mac CuteSoft recognizes that Macintosh is a popular operating system and that support for the Mac is often required by our customers. Cute Editor is designed with Mac users in mind. It is fully cross-platform tested and compatible. Cute Editor for .NET supports the ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 29, 2006
  • Which product please?

    Generally speaking, if you only need the control to run on 1 domain/subdomain (i.e. http://test.abc.com or http://www.abc.com), then a Domain license will do.   For 10 such names, a small business license will do.   For all the domains/subdomains hosted on 1 IP@, an IP license will do   For unlimited use of the control, an ...
    Posted to Purchase / License FAQ (Forum) by Karen on March 20, 2006
  • Re: Regarding UseRelativeLinks

    Emadah,   Please check the following article:   Working with Links   http://cutesoft.net/developer+guide/Working-with-Links.htm   If you set both UseRelativeLinks and RemoveServerNamesFromUrl to true, Cute Editor will insert root links ( <a href=''/default.aspx''>Home</a> ).   For more information ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 17, 2006
  • Re: Uploading Excel files

    http://cutesoft.net/developer+guide/Restricting-Document-Files-by-Extensions-and-Types.htmRestricting Document Files by Extensions and Types One of the Cute Editor new and innovative capabilities is Restricting uploading document Files by Extensions and Types. You can filter the type of document files so only specified file types are allowed ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 15, 2006
  • Re: Is it possible to have a file with Code Snippet for each user

    You need to Programmatically populate the Code Snippet dropdown.   if (!IsPostBack) {    CuteEditor.ToolControl toolctrl=Editor1.ToolControls[''Codes''];    if(toolctrl!=null) {       CuteEditor.RichDropDownList dropdown=(CuteEditor.RichDropDownList)toolctrl.Control; ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 6, 2006
  • Re: Customizing Toolbar

    Sujay,   The following article shows the methods to change the toolbar layout: http://cutesoft.net/developer+guide/Howto_Change_layout_of_the_toolbars.htm   5. Put the toolbar items needed to be disabled into this Editor.DisableItemList string. For example: <CE:Editor id=''Editor1'' DisableItemList=''save, ...
    Posted to Cute Editor for .NET (Forum) by Adam on March 3, 2006
  • Re: File manager like open file function ?

    You can use the following methods to laed the files into the Editor.   LoadFile Loads the contents of a file into the CuteEditor control. LoadHtml Loads the contents of a HTML file into the CuteEditor control. LoadRTF Loads the contents of an RTF file into the CuteEditor control. LoadText Loads the ...
    Posted to Cute Editor for .NET (Forum) by Adam on February 17, 2006
  • Re: Determing the selected text in code-behind

    mjswenson726,   Welcome to CuteSoft support forum.   >>In the code-behind I would trap either the original text or the text location by start and end line.    Here is a simple solution:Get the selection using the JavaScript (http://cutesoft.net/example/JavaScript-API.aspx).And put the result in a hidden field. When ...
    Posted to Cute Editor for .NET (Forum) by Adam on February 15, 2006