CuteEditor for ASP version 4.1 is available!

  •  07-17-2005, 11:06 PM

    CuteEditor for ASP version 4.1 is available!

    We are happy to announce the newest build (version 4.1) of our software - CuteEditor for ASP  is available.

    If you still have the CuteEditor Delivery email, click the URL in the email to download your control.

    If you deleted the delivey email, please write to sales@cutesoft.net .
     
    New Features and Improvements:
     
    • The new Editor.RemoveTBODYTag Property has been introduced. 

      By default Internet Explorer HTML parser automatically insert TBODY tag after any TABLE tag. When this property is set to true, CuteEditor strips out the TBODY tags.  
       
      For example:

      editor.RemoveTBODYTag = true

    • The new Editor.UseSimpleAmpersand Property has been introduced. 

      W3C recommend that all '&' in query strings be converted to & This is the only way to get a piece of HTML validated. The reason is that & is the start of an HTML entity, such as £

      So this: 
                  
              <a href="page.aspx?var1=one&amp;va­r2=two">link</a>
      is valid, whereas:
              <a href="page.aspx?var1=one&var2=t­wo">link</a>
      isn't.   

    If you still want to use simple Ampersand in query strings, you can set this property to true. if you want to retrieve the CuteEditor HTML content in XHTML format, the 'UseSimpleAmpersand' property will be ignored.  

    For example:

    editor.UseSimpleAmpersand  = true

    • The new Editor.DisableAutoFormatting Property has been introduced. 

      By default Cute Editor will carefully analyze all of your HTML code and begin correcting all errors automatically. What you get is professionally presented code, properly reformatted and ready for use. If you want to preserve the formatting of existing HTML, you can turn this feature off by setting Editor.DisableAutoFormatting property to "true".

      Example:

      editor.DisableAutoFormatting = true 

    • The new Editor.EnableStripScriptTags Property has been introduced. 

      This property allows you specify whether to remove inject script before write the string into the db.

      Example:

      editor.EnableStripScriptTags = false

    • The new Editor.EditorOnPaste Property has been introduced. 

      This property allows you specify specify the manner in which the editor handles pasted text.

      Example:

      PasteBehavior (Enumerates the manners in which the editor handles pasted text. )

      Member Name Description
      Default When you paste text into the editor it is not processed.
      Disabled Paste function is disabed.
      PasteWord When you pasting the content from Word into the editor, the non-required code that usually comes with pasting from Word are automatically cleaned up.
      PasteText When you paste text into the editor, all HTML formatting is stripped. This option is ideal for content management systems where you want absolute control over the formatting
      ConfirmWord When you pasting the content from Word into the editor, will prompt users with a popup prompt to clean the non-required code.

      Example:

      editor.EditorOnPaste = "ConfirmWord"

    • The new Editor.UseNetSpell Property has been introduced. 

      The NetSpell project is a free spell checking engine written entirely in managed C# .net code. Package includes a medium sized English dictionaries. Suggestions for misspelled words are generated using phonetic (sounds like) matching and ranked by a typographical score (looks like). Also supports "ignore all" and "replace all" misspelled-word handling.

      For detail information, please check LoreSoft.com Site.

      Please note that: You need to have the .NET framework installed on your web server to use this feature. If not, you need to set the editor.UseNetSpell property to false to use the Iespell instead.

      Example:

      editor.UseNetSpell = false

    • The new Editor.BaseHref Property has been introduced. 

      This property allows you set or retrieve the baseline URL on which relative links will be based. 

      Example:

      editor.BaseHref = "http://cutesoft.net"



    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread