<?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>ForDevs &#187; JSP</title>
	<atom:link href="http://www.fordevs.com/category/programming/java/jsp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>JavaBeans</title>
		<link>http://www.fordevs.com/2009/02/javabeans.html</link>
		<comments>http://www.fordevs.com/2009/02/javabeans.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 15:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/javabeans.html</guid>
		<description><![CDATA[Requirements for JavaBeans: there have to be set/get methods specified has to have public default constructor (without parameters) it should be in a package serializable get/set methods has to have the same data type! bean cannot modify content of a page! &#8230; in general, JavaBean is a standard Class. It can be used as a [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/javabeans.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open a File at any format in JSP</title>
		<link>http://www.fordevs.com/2008/12/open-file-at-any-format-in-jsp.html</link>
		<comments>http://www.fordevs.com/2008/12/open-file-at-any-format-in-jsp.html#comments</comments>
		<pubDate>Mon, 22 Dec 2008 17:35:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/open-a-file-at-any-format-in-jsp.html</guid>
		<description><![CDATA[How to Open a File in Different Format 1.Create a HTML Page or JSP Page2.Insert &#60;%@ page contentType=&#8221;application/vnd.ms-excel&#8221; %&#62; instead of &#60;%@ page contentType=&#8221;application/html&#8221; %&#62; in HTML Page or JSP Page3.Open a File,Now its open in a Excel Sheet with Style apply in the Sheet. For Microsoft Word &#60;%@ page contentType=&#8221;application/vnd.msword&#8221; %&#62; For PDF File [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/open-file-at-any-format-in-jsp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional Tags in JSP</title>
		<link>http://www.fordevs.com/2008/11/conditional-tags.html</link>
		<comments>http://www.fordevs.com/2008/11/conditional-tags.html#comments</comments>
		<pubDate>Fri, 14 Nov 2008 16:45:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/conditional-tags-in-jsp.html</guid>
		<description><![CDATA[The if tag allows the conditional execution of its body according to the value of the test attribute &#60;c:if test=&#8221;${not empty details.add}&#8221;&#62;It is Not a Empty ArrayList&#60;/c:if&#62; &#60;c:if test=&#8221;${empty details.add}&#8221;&#62;It is a Empty ArrayList&#60;/c:if&#62; The choose tag performs conditional block execution by the embedded when subtags. It renders the body of the first when tag [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/conditional-tags.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taglibs in JSP</title>
		<link>http://www.fordevs.com/2008/11/taglibs-in-jsp.html</link>
		<comments>http://www.fordevs.com/2008/11/taglibs-in-jsp.html#comments</comments>
		<pubDate>Sat, 08 Nov 2008 14:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/taglibs-in-jsp.html</guid>
		<description><![CDATA[Different Taglibs and its Usuage in JSP:1.Core:http://java.sun.com/jsp/jstl/core This Taglibs is used for Looping,Variable Support,Flow control,URL Management and miscellaneous &#60;%@taglib uri=&#8221;http://java.sun.com/jsp/jstl/core&#8221; prefix=&#8221;c&#8221;%&#62; 2.XML:http://java.sun.com/jsp/jstl/xml This Taglibs is Used for Core,Flow Control and Transformation &#60;%@taglib uri=&#8221;http://java.sun.com/jsp/jstl/xml&#8221; prefix=&#8221;xl&#8221;%&#62; 3.Internationalization:http://java.sun.com/jsp/jstl/fmt This Taglibs is Used For Locale, Message formatting and Number &#38; date formatting &#60;%@taglib uri=&#8221;http://java.sun.com/jsp/jstl/fmt&#8221; prefix=&#8221;fmt&#8221;%&#62; 4.SQL:http://java.sun.com/jsp/jstl/sql This Taglibs is [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/taglibs-in-jsp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compare two ArrayList in JSP</title>
		<link>http://www.fordevs.com/2008/11/compare-two-arraylist-in-jsp.html</link>
		<comments>http://www.fordevs.com/2008/11/compare-two-arraylist-in-jsp.html#comments</comments>
		<pubDate>Sun, 02 Nov 2008 17:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/compare-two-arraylist-in-jsp.html</guid>
		<description><![CDATA[Compare two ArrayList: 1.ArrayList are ListOfData and SecondList 2.Include this tag in the JSP Page 3.Find the Length of the ArrayList Using fn:length tag 4.Compare the ArrayList as &#60;c:if test=&#8221;${not empty ListOfData}&#8221; &#62; &#60;c:forEach var=&#8221;j&#8221; begin=&#8221;0&#8243; end=&#8221;${fn:length(SecondList)-1}&#8221;&#62; &#60;c:forEach var=&#8221;i&#8221; begin=&#8221;0&#8243; end=&#8221;${fn:length(ListOfData)-1}&#8221;&#62; &#60;tr> &#60;c:if test=&#8221;${SecondList[j].empid==ListOfData[i].empid}&#8221;&#62; &#60;td>${ListOfData[i].empid} &#60;/td&#62; &#60;td>${ListOfData[i].empname} &#60;/td&#62; &#60;td>${ListOfData[i].empdest} &#60;/td&#62; &#60;/c:if&#62; &#60;/tr&#62; &#60;/c:forEach&#62; &#60;/c:forEach&#62; &#60;/c:if&#62;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/compare-two-arraylist-in-jsp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pagination in JSP</title>
		<link>http://www.fordevs.com/2008/10/pagination-in-jsp.html</link>
		<comments>http://www.fordevs.com/2008/10/pagination-in-jsp.html#comments</comments>
		<pubDate>Mon, 27 Oct 2008 12:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/pagination-in-jsp.html</guid>
		<description><![CDATA[Pagination Using Display Tag : If you would like to make use of the display taglib in your own application, do the following 1.Drop the displaytag-version.jar file in your application WEB-INF/lib directory 2.Make sure that following libraries are in your WEB-INF/lib directory (or made available via the classpath to your application server). Refer to the [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/pagination-in-jsp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSP Applet tag</title>
		<link>http://www.fordevs.com/2008/10/jsp-applet-tag.html</link>
		<comments>http://www.fordevs.com/2008/10/jsp-applet-tag.html#comments</comments>
		<pubDate>Sun, 26 Oct 2008 16:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Applet]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/jsp-applet-tag.html</guid>
		<description><![CDATA[How to Include Applet Program in a JSP Page: 1.Create a Applet Java Program sample.java import javax.swing.JApplet; import java.awt.*; import java.awt.event.*; import java.applet.*;   &#160; public class sample extends Applet &#123; &#160; sampleCanvas canvas; // The drawing area to display arcs public static String s=null; &#160; public void init&#40;&#41; &#123; setLayout&#40;new BorderLayout&#40;&#41;&#41;; canvas = new sampleCanvas&#40;&#41;; [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/jsp-applet-tag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSP Custom tags Example</title>
		<link>http://www.fordevs.com/2008/10/jsp-custom-tags-example.html</link>
		<comments>http://www.fordevs.com/2008/10/jsp-custom-tags-example.html#comments</comments>
		<pubDate>Sun, 26 Oct 2008 07:22:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/jsp-custom-tags-example.html</guid>
		<description><![CDATA[Custom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. A Simple Custom tags Example: 1.Create a Java Program 2.import javax.servlet.jsp.*,javax.servlet.jsp.tagext.* packages 3.Extends the TagSupport Class 4.Java Program Contain two Default Methods. a)doStartTag b)doEndTag doStartTag:1.The doStartTag method [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/jsp-custom-tags-example.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom tags in JSP</title>
		<link>http://www.fordevs.com/2008/10/custom-tags.html</link>
		<comments>http://www.fordevs.com/2008/10/custom-tags.html#comments</comments>
		<pubDate>Sun, 26 Oct 2008 07:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/custom-tags-in-jsp.html</guid>
		<description><![CDATA[Custom tags : Custom tags are usually distributed in the form of a tag library, which defines a set of related custom tags and contains the objects that implement the tags. Ex:- what is Custom tags? A custom tag is a user-defined JSP language element. When a JSP page containing a custom tag is translated [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/custom-tags.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
