<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Schogini &#187; JSP</title>
	<atom:link href="http://sree.cc/category/java-server-page/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:47:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simple Java Servlet code to connvert km/l to miles/gallon</title>
		<link>http://sree.cc/java-server-page/simple-java-servlet-code-to-connvert-kml-to-milesgallon</link>
		<comments>http://sree.cc/java-server-page/simple-java-servlet-code-to-connvert-kml-to-milesgallon#comments</comments>
		<pubDate>Mon, 25 Jul 2011 03:07:33 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Cellspacing]]></category>
		<category><![CDATA[Conversion Chart]]></category>
		<category><![CDATA[Decimalformat]]></category>
		<category><![CDATA[Fuel Efficiency]]></category>
		<category><![CDATA[H3]]></category>
		<category><![CDATA[Import Java]]></category>
		<category><![CDATA[Java Servlet]]></category>
		<category><![CDATA[Java Text]]></category>
		<category><![CDATA[Java Util]]></category>
		<category><![CDATA[Kilometers]]></category>
		<category><![CDATA[Kpl]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Miles Per Gallon]]></category>
		<category><![CDATA[MPG]]></category>
		<category><![CDATA[Page Bottom]]></category>
		<category><![CDATA[Public Void]]></category>
		<category><![CDATA[Servlets]]></category>
		<category><![CDATA[Table Border]]></category>
		<category><![CDATA[Td]]></category>
		<category><![CDATA[Text Import]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=8356</guid>
		<description><![CDATA[The following servlet will convert km/l to miles/g package jspcr.servlets; import java.io.*; import java.text.*; import java.util.*; import javax.servlet.*; import javax.servlet.http.*; public class K2MServlet extends HttpServlet { private static final DecimalFormat FMT = new DecimalFormat("#0.00"); private static final String PAGE_TOP = ""+ "&#60;HTML&#62;"+ "&#60;HEAD&#62;"+ "&#60;TITLE&#62;Fuel Efficiency Conversion Chart&#60;/TITLE&#62;" + "&#60;/HEAD&#62;"+ "&#60;BODY&#62;"+ "&#60;H3&#62;Fuel Efficiency Conversion Chart&#60;/H3&#62;"+ "&#60;TABLE [...]]]></description>
		<wfw:commentRss>http://sree.cc/java-server-page/simple-java-servlet-code-to-connvert-kml-to-milesgallon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fetch values from a table in a database using JSP?</title>
		<link>http://sree.cc/java-server-page/how-to-fetch-values-from-a-table-in-a-database-using-jsp</link>
		<comments>http://sree.cc/java-server-page/how-to-fetch-values-from-a-table-in-a-database-using-jsp#comments</comments>
		<pubDate>Fri, 05 Feb 2010 10:43:10 +0000</pubDate>
		<dc:creator>sanjeev</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connection]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=500</guid>
		<description><![CDATA[To connect with a database, you need the following things. 1. A Database System. 2. A Database Connector 3. Apache Tomcat 4. jdk The database system we use is MySQL. You can download it from the following location. http://www.filehippo.com/download_mysql/ At the time of installation, you can configure the username and password. After installation, you can [...]]]></description>
		<wfw:commentRss>http://sree.cc/java-server-page/how-to-fetch-values-from-a-table-in-a-database-using-jsp/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create a simple application in JSP?</title>
		<link>http://sree.cc/java-server-page/how-to-create-a-simple-application-in-jsp-2</link>
		<comments>http://sree.cc/java-server-page/how-to-create-a-simple-application-in-jsp-2#comments</comments>
		<pubDate>Thu, 04 Feb 2010 07:15:57 +0000</pubDate>
		<dc:creator>sanjeev</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[J2EE application]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[simple application in JSP]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=490</guid>
		<description><![CDATA[To work with a J2EE application, you need two things in your system. 1. jdk 2. Apache Tomcat Since both of them are open source you can download it from the Net. You can try the links below: http://java.com/en/download/ http://tomcat.apache.org/download-60.cgi After installing jdk 1.5 or latest version, you can also install Apache Tomcat of versions [...]]]></description>
		<wfw:commentRss>http://sree.cc/java-server-page/how-to-create-a-simple-application-in-jsp-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a login script in JSP without any database</title>
		<link>http://sree.cc/java-server-page/how-to-create-a-login-script-in-jsp-without-any-database</link>
		<comments>http://sree.cc/java-server-page/how-to-create-a-login-script-in-jsp-without-any-database#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:17:39 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=407</guid>
		<description><![CDATA[First of all, you have to  create a simple login form with plain html tags and name it as login.jsp or any-name.jsp and save it in your apache-tomcat&#8217;s webapps folder. The script for creating login.jsp given below: [sourcecode language="html"] &#60;html&#62; &#60;head&#62;&#60;title&#62;Login&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;form action=&#34;main_page.jsp&#34;&#62; &#60;table&#62; &#60;tr&#62;&#60;th colspan=&#34;2&#34;&#62;Login&#60;/th&#62;&#60;/tr&#62; &#60;tr&#62; &#60;td&#62;Username&#60;/td&#62;&#60;td&#62;:&#60;input type=&#34;text&#34; name=&#34;username&#34; id=&#34;username&#34; /&#62;&#60;/td&#62; &#60;/tr&#62; [...]]]></description>
		<wfw:commentRss>http://sree.cc/java-server-page/how-to-create-a-login-script-in-jsp-without-any-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sree.cc @ 2012-02-06 09:50:39 -->
