<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Microsoft.NET</title>
	<atom:link href="http://rthumati.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rthumati.wordpress.com</link>
	<description>.......................................................Expertise in .NET Technologies</description>
	<lastBuildDate>Tue, 22 Dec 2009 17:10:46 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rthumati.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4d13a440391e476c08f9f24e4db67db6?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Microsoft.NET</title>
		<link>http://rthumati.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rthumati.wordpress.com/osd.xml" title="Microsoft.NET" />
		<item>
		<title>Client Side and Server Side Processing</title>
		<link>http://rthumati.wordpress.com/2009/12/22/client-side-and-server-side-processing/</link>
		<comments>http://rthumati.wordpress.com/2009/12/22/client-side-and-server-side-processing/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:10:46 +0000</pubDate>
		<dc:creator>Ravi Varma Thumati</dc:creator>
				<category><![CDATA[ASP.NET Basics]]></category>
		<category><![CDATA[Client Side and Server Side Processing]]></category>

		<guid isPermaLink="false">http://rthumati.wordpress.com/?p=1872</guid>
		<description><![CDATA[In this article, you will learn to distinguish client side and server side processing, and have a look at the advantages of both processing.


 The Client requests an ASP.NET page from the server.        


 The Server returns a page containing HTML and script to the client.



In this example, the page includes a textbox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rthumati.wordpress.com&blog=6249955&post=1872&subd=rthumati&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">In this article, you will learn to distinguish client side and server side processing, and have a look at the advantages of both processing.</p>
<p style="text-align:justify;"><a href="http://rthumati.files.wordpress.com/2009/12/clientserver11.jpg"><img class="alignnone size-full wp-image-1875" title="clientserver1" src="http://rthumati.files.wordpress.com/2009/12/clientserver11.jpg?w=425&#038;h=256" alt="" width="425" height="256" /></a></p>
<ul style="text-align:justify;">
<li> The Client requests an ASP.NET page from the server.        <a href="http://rthumati.files.wordpress.com/2009/12/clientserver21.jpg"><img class="alignnone size-full wp-image-1876" title="clientserver2" src="http://rthumati.files.wordpress.com/2009/12/clientserver21.jpg?w=662&#038;h=382" alt="" width="662" height="382" /></a></li>
</ul>
<ul style="text-align:justify;">
<li> The Server returns a page containing HTML and script to the client.</li>
</ul>
<p style="text-align:justify;"><a href="http://rthumati.files.wordpress.com/2009/12/clientserver3.jpg"><img class="alignnone size-full wp-image-1877" title="clientserver3" src="http://rthumati.files.wordpress.com/2009/12/clientserver3.jpg?w=599&#038;h=382" alt="" width="599" height="382" /></a></p>
<ul>
<li style="text-align:justify;">In this example, the page includes a textbox and a submit button. The page also contains client side script validates the contents of the textbox.<a href="http://rthumati.files.wordpress.com/2009/12/clientserver4.jpg"><img class="alignnone size-full wp-image-1878" title="clientserver4" src="http://rthumati.files.wordpress.com/2009/12/clientserver4.jpg?w=505&#038;h=382" alt="" width="505" height="382" /></a></li>
<li style="text-align:justify;">If the user enters invalid information into the textbox, the client side script generates a warning and does not forward the information to the server.<a href="http://rthumati.files.wordpress.com/2009/12/clientserver5.jpg"><img class="alignnone size-full wp-image-1879" title="clientserver5" src="http://rthumati.files.wordpress.com/2009/12/clientserver5.jpg?w=510&#038;h=382" alt="" width="510" height="382" /></a></li>
</ul>
<p><a href="http://rthumati.files.wordpress.com/2009/12/clientserver6.jpg"><img class="alignnone size-full wp-image-1880" title="clientserver6" src="http://rthumati.files.wordpress.com/2009/12/clientserver6.jpg?w=569&#038;h=382" alt="" width="569" height="382" /></a></p>
<p style="text-align:justify;">The advantage of client side processing is that it reduces the network traffic and response time for simple processing is achieved.</p>
<ul>
<li style="text-align:justify;">The user than corrects the information in the textbox, and clicks the submit button. The information is validated on the client side, and then values sent to the server, where server side processing can take place.<a href="http://rthumati.files.wordpress.com/2009/12/clientserver7.jpg"><img class="alignnone size-full wp-image-1881" title="clientserver7" src="http://rthumati.files.wordpress.com/2009/12/clientserver7.jpg?w=591&#038;h=382" alt="" width="591" height="382" /></a></li>
<li style="text-align:justify;">The server repeats the validation and in this case stores the information from the textbox in a database.<a href="http://rthumati.files.wordpress.com/2009/12/clientserver8.jpg"><img class="alignnone size-full wp-image-1882" title="clientserver8" src="http://rthumati.files.wordpress.com/2009/12/clientserver8.jpg?w=585&#038;h=385" alt="" width="585" height="385" /></a></li>
</ul>
<p style="text-align:justify;">Because the client side script cannot access the server resources, server side processing offers a greater range of security and flexibility in data processing.</p>
Posted in ASP.NET Basics Tagged: Client Side and Server Side Processing <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rthumati.wordpress.com/1872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rthumati.wordpress.com/1872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rthumati.wordpress.com/1872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rthumati.wordpress.com/1872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rthumati.wordpress.com/1872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rthumati.wordpress.com/1872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rthumati.wordpress.com/1872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rthumati.wordpress.com/1872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rthumati.wordpress.com/1872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rthumati.wordpress.com/1872/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rthumati.wordpress.com&blog=6249955&post=1872&subd=rthumati&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rthumati.wordpress.com/2009/12/22/client-side-and-server-side-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ca37573f6217e83a61e80f18f3251d7f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravivarmathumati</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver11.jpg" medium="image">
			<media:title type="html">clientserver1</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver21.jpg" medium="image">
			<media:title type="html">clientserver2</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver3.jpg" medium="image">
			<media:title type="html">clientserver3</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver4.jpg" medium="image">
			<media:title type="html">clientserver4</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver5.jpg" medium="image">
			<media:title type="html">clientserver5</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver6.jpg" medium="image">
			<media:title type="html">clientserver6</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver7.jpg" medium="image">
			<media:title type="html">clientserver7</media:title>
		</media:content>

		<media:content url="http://rthumati.files.wordpress.com/2009/12/clientserver8.jpg" medium="image">
			<media:title type="html">clientserver8</media:title>
		</media:content>
	</item>
	</channel>
</rss>