<?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>India JSP &#124; Java Server Pages Technology &#124; Java Servlets &#124; JSP &#187; Java Server Pages Tag </title>
	<atom:link href="http://www.indiajsp.org/tag/java-server-pages/feed" rel="self" type="application/rss+xml" />
	<link>http://www.indiajsp.org</link>
	<description>India JSP &#124; Java Server Pages Technology &#124; Java Servlets &#124; JSP</description>
	<lastBuildDate>Thu, 03 Feb 2011 05:47:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JSP Introduction</title>
		<link>http://www.indiajsp.org/2010/12/20/jsp-introduction/index.html</link>
		<comments>http://www.indiajsp.org/2010/12/20/jsp-introduction/index.html#comments</comments>
		<pubDate>Mon, 20 Dec 2010 09:31:54 +0000</pubDate>
		<dc:creator>Contributor</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Java Server Pages]]></category>

		<guid isPermaLink="false">http://www.indiajsp.org/?p=7</guid>
		<description><![CDATA[




 JSP stands for Java Server Pages. Actually, JSP in itself isn&#8217;t a language, instead it is more of a technology used by Java on the server side to display dynamic content on the web pages.
Essentially JSP pages are just normal HTML with Java codes embedded in them. So a general understanding of HTML and [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>JSP stands for Java Server Pages. Actually, JSP in itself isn&#8217;t a language, instead it is more of a technology used by Java on the server side to display dynamic content on the web pages.</p>
<p>Essentially JSP pages are just normal HTML with Java codes embedded in them. So a general understanding of HTML and Java is required for learning JSP. If you do not have even basic knowledge about HTML, please consider taking the course HTML.</p>
<p>How JSP works? The below is the process:</p>
<p>1. The Web browser sends a request to your web server asking for a page.</p>
<p>2. The Web server loads the page and looks for JSP code to run.</p>
<p>3. If JSP code is found, the web server runs the code and sends the results to the Web browser. So the result page on the client side looks like a pure HTML page.</p>
<p>You may wonder why we need an JSP page to display web contents while we have HTML. Well, HTML can be used to display web contents, but the page is static, not dynamic. Image you have a website that sells products, and you want to display the name, price, description and category of each product on a page. Normally in HTML you would have to write this page out by hand, and every time you change products or prices you would have to go back and re-write the page. But if you use JSP, you can select records from a database and generate the HTML page when an user request it. When you get a new product or change the prices you will only have to change the information in the database and the page will automatically be updated to reflect those changes without writing a single line of code.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajsp.org/2010/12/20/jsp-introduction/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajsp.org/2010/12/20/jsp-introduction/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefits of JSP</title>
		<link>http://www.indiajsp.org/2010/12/03/benefits-of-jsp/index.html</link>
		<comments>http://www.indiajsp.org/2010/12/03/benefits-of-jsp/index.html#comments</comments>
		<pubDate>Fri, 03 Dec 2010 12:07:21 +0000</pubDate>
		<dc:creator>Contributor</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Java Server Pages]]></category>

		<guid isPermaLink="false">http://www.indiajsp.org/?p=5</guid>
		<description><![CDATA[




 JSP hosting provides web designers several different Java hosting options, including the ability to manage and use Java Server Pages (JSP). What is also nice is that JSP and ASP hosting are very similar, so if you understand one, it won&#8217;t take you long to move to the other. JSP also features many other [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>JSP hosting provides web designers several different Java hosting options, including the ability to manage and use Java Server Pages (JSP). What is also nice is that JSP and ASP hosting are very similar, so if you understand one, it won&#8217;t take you long to move to the other. JSP also features many other benefits.</p>
<p>First, JSP makes use of some very simple codes that you simply insert into HTML or XML pages. These codes allow the creation of interactive web pages that, because they are created using Java, will run on any platform. This gives businesses the ability to reach all customers, no matter if they are using Windows, Mac OS, Linux, or any other operating system. JSP hosting makes it incredibly easy to publish these pages, so there is no hassle anywhere.</p>
<p>JSP allows for dynamic pages to be created by the server, plus you can create static pages that feature dynamic sections as well. This means you can include the same banner and other information on one part of the page and then a section of the page created by the user&#8217;s input on another part. This means you do not have to repeat the static code over and over, which is one of the main features of JSP hosting. The coding is much more efficient, and it takes less work to make the same type of websites.</p>
<p>Another nice feature of JSP hosting is that you do not really need to know Java to make use of it. All you need to do is learn the tags and codes to insert into your HTML or XML sites. These codes are all pretty simple and intuitive. There&#8217;s no need to hire a programmer to write servlets. In fact, JavaScript can&#8217;t provide the same amount of dynamic creation that JSP can. It&#8217;s actually fairly limited when it comes to dealing with client-side dynamics. You can also build your site&#8217;s design and content separately, allowing both tasks to be done at once. This can save you some time and makes updating easier.</p>
<p>Why choose JSP over ASP? Well, ASP was created by Microsoft, and some of its more advanced features will only work on Windows servers. With JSP, that&#8217;s not an issue &#8211; every feature works on all platforms. This means you can easily move your website from server to server without any concern.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajsp.org/2010/12/03/benefits-of-jsp/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajsp.org/2010/12/03/benefits-of-jsp/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>India JSP : Java Server Pages</title>
		<link>http://www.indiajsp.org/2009/07/11/india-jsp-java-server-pages/index.html</link>
		<comments>http://www.indiajsp.org/2009/07/11/india-jsp-java-server-pages/index.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 11:04:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSP]]></category>
		<category><![CDATA[Java Server Pages]]></category>
		<category><![CDATA[indiajsp]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML with Java]]></category>
		<category><![CDATA[India JSP]]></category>

		<guid isPermaLink="false">http://www.indiajsp.org/?p=2</guid>
		<description><![CDATA[




 JSP stands for Java Server Pages. Actually, JSP in itself isn&#8217;t a language, instead it is more of a technology used by Java on the server side to display dynamic content on the web pages.
Essentially JSP pages are just normal HTML with Java codes embedded in them. So a general understanding of HTML and [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>JSP stands for Java Server Pages. Actually, JSP in itself isn&#8217;t a language, instead it is more of a technology used by Java on the server side to display dynamic content on the web pages.</p>
<p>Essentially JSP pages are just normal HTML with Java codes embedded in them. So a general understanding of HTML and Java is required for learning JSP. If you do not have even basic knowledge about HTML, please consider taking the course HTML.</p>
<p>How JSP works? The below is the process:</p>
<p>1. The Web browser sends a request to your web server asking for a page.</p>
<p>2. The Web server loads the page and looks for JSP code to run.</p>
<p>3. If JSP code is found, the web server runs the code and sends the results to the Web browser. So the result page on the client side looks like a pure HTML page.</p>
<p>You may wonder why we need an JSP page to display web contents while we have HTML. Well, HTML can be used to display web contents, but the page is static, not dynamic. Image you have a website that sells products, and you want to display the name, price, description and category of each product on a page. Normally in HTML you would have to write this page out by hand, and every time you change products or prices you would have to go back and re-write the page. But if you use JSP, you can select records from a database and generate the HTML page when an user request it. When you get a new product or change the prices you will only have to change the information in the database and the page will automatically be updated to reflect those changes without writing a single line of code.
<div class='kouguu_fb_like_button'><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.indiajsp.org/2009/07/11/india-jsp-java-server-pages/index.html&#038;layout=standard&#038;show_faces=true&#038;width=450&#038;height=65&#038;action=like&#038;colorscheme=light&#038;" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:65px;"></iframe></div>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajsp.org/2009/07/11/india-jsp-java-server-pages/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

