Output HTML : Java examples (example source code) » JSP » HTML Output

Java
C++
Java Products
Java Articles
Java Home  »   JSP   » [  HTML Output  ]  Screenshots 
 



Output HTML

<%--
  Copyright (c2002 by Phil Hanna
  All rights reserved.
  You may study, use, modify, and distribute this
  software for any purpose provided that this
  copyright notice appears in all copies.
  This software is provided without warranty
  either expressed or implied.
--%>
<%@ page session="false" %>
<%
   out.println("<code>out</code> is an <i>");
   out.println(out.getClass().getName());
   out.println("</i> object.");
%>
Related examples in the same category
1.  JSP HTML Table
2.  Output Simple HTML Tag Jsp
3.  Celsius Fahrenheit Table Jsp
4.  Print ASCII Table Jsp
5.  Prints a conversion table of miles per gallon to kilometers per liter








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.