You are here:   Blogs
Register   |  Login

News & Releases

Minimize
Nasosoft Component for .NET v2.8 Released - Wednesday, July 28, 2010

Nasosoft Component for .NET v2.8 has released with many improvements.

Nasosoft Component for .NET is a suite of comprehensive .NET controls, including EXCEL, PDF, and RTF document format engines, RTF to HTML, HTML to RTF, RTF to TEXT, HTML to TEXT document transform engines, Chart control, SMTP, POP3, IMAP, FTP, WebDAV internet SDK and ZIP, GZIP, TAR compression.

What's new

  • Nasosoft Excel 
    • Support reading Excel 95 file format  
    • Improved error recovery for loading unreadable excel files
  • Nasosoft Transform
    • Support Text to PDF convertion 
  • Nasosoft PDF
    • Support MeasueString
  • Many Bug fixes from v2.7

How to Download

 

Convert Html to RTF using Nasosoft.Documents.Transform

Minimize
Location: Blogs.NET Programming    
Posted by: host 6/6/2009 4:58 AM

Nasosoft.Documents.Transform supports converting HTML to RTF file. You can easily load a HTML document and transfer it into RTF file format in C# without understanding the RTF format details. For example:

[C#]
           //create a HtmlToRtfTransform
            using (HtmlToRtfTransform c = new HtmlToRtfTransform())
            {
                 c.Load("SimpleTest.htm"); //load the html file
                 c.Transform("SimpleTest.rtf"));//transform to rtf file
            }

 

Permalink |  Trackback