-- <http://java.apache.org/ecs/> Element Construction Set (ECS) is a Java API for generating elements for various markup languages it directly supports HTML 4.0 and XML, but can easily be extended to create tags for any markup language. This version fixes some bugs, re-arranges the package layout adds optional Pretty Printing of the output and is a final 1.0 release! Instead of doing something like this in your servlet: out.println("<B><I>"); out.println("hello world!"); out.println("</I></B>"); You can do this in your servlet: B b = new B().addElement (new I("hello world!")); out.println ( b.toString() ); This creates the HTML on the output stream: <B>hello world!</B> <http://java.apache.org/ecs/> -jon -- -------------------------------------------------------------- To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] READ THE FAQ!!!! <http://java.apache.org/faq/> Archives and Other: <http://java.apache.org/main/mail.html/> Problems?: [EMAIL PROTECTED]