<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Spring MVC Validations Example</title>
	<atom:link href="http://www.deepakgaikwad.net/index.php/2009/03/30/spring-mvc-validations-example.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.deepakgaikwad.net/index.php/2009/03/30/spring-mvc-validations-example.html</link>
	<description>Travel Articles and Tech Notes</description>
	<lastBuildDate>Tue, 17 Jan 2012 06:50:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: admin</title>
		<link>http://www.deepakgaikwad.net/index.php/2009/03/30/spring-mvc-validations-example.html/comment-page-1#comment-2145</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 09 Dec 2009 04:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=560#comment-2145</guid>
		<description>Hi Vasu,

Here is code for the jsp.

&lt;%@ taglib uri=&quot;http://www.springframework.org/tags&quot; prefix=&quot;spring&quot;%&gt;
&lt;%@ taglib prefix=&quot;form&quot; uri=&quot;http://www.springframework.org/tags/form&quot;%&gt;
&lt;h1&gt;This is Spring MVC Tutorial&lt;/h1&gt;
&lt;spring:nestedPath path=&quot;visitor&quot;&gt;
&lt;form:form action=&quot;hellovisitor.htm&quot; commandName=&quot;visitor&quot;&gt;
&lt;TR&gt;
    &lt;TD class=&quot;alignRight&quot; nowrap width=&quot;156&quot;&gt;First Name:&#160;&lt;/TD&gt;
    &lt;TD class=&quot;alignLeft&quot; colspan=&quot;3&quot;&gt;
    &lt;spring:bind path=&quot;firstName&quot;&gt;
&lt;input name=&quot;${status.expression}&quot; 
value=&quot;${status.value}&quot; type=&quot;text&quot; id=&quot;textfield&quot; accesskey=&quot;&quot; tabindex=&quot;1&quot;&gt;
&lt;/spring:bind&gt;
&lt;/TD&gt;

&lt;/TR&gt;
&lt;TR&gt;
    &lt;TD class=&quot;alignRight&quot; nowrap width=&quot;156&quot;&gt;Last Name:&#160;&lt;/TD&gt;
    &lt;TD class=&quot;alignLeft&quot; colspan=&quot;2&quot;&gt;
    &lt;spring:bind path=&quot;lastName&quot;&gt;
&lt;input name=&quot;${status.expression}&quot; value=&quot;${status.value}&quot; 
type=&quot;text&quot; id=&quot;textfield1&quot; accesskey=&quot;&quot; tabindex=&quot;2&quot;&gt;
&lt;/spring:bind&gt;
&lt;/TD&gt;
  &lt;/TR&gt;
&lt;TR&gt;
	&lt;TD&gt;
		&lt;input type=&quot;submit&quot; value=&quot;Submit&quot;&gt;
	&lt;/TD&gt;
&lt;/TR&gt;
&lt;/form:form&gt;
&lt;/spring:nestedPath&gt;</description>
		<content:encoded><![CDATA[<p>Hi Vasu,</p>
<p>Here is code for the jsp.</p>
<p>&lt;%@ taglib uri=&#8221;http://www.springframework.org/tags&#8221; prefix=&#8221;spring&#8221;%><br />
&lt;%@ taglib prefix=&#8221;form&#8221; uri=&#8221;http://www.springframework.org/tags/form&#8221;%><br />
&lt;h1>This is Spring MVC Tutorial&lt;/h1><br />
&lt;spring:nestedPath path=&#8221;visitor&#8221;><br />
&lt;form:form action=&#8221;hellovisitor.htm&#8221; commandName=&#8221;visitor&#8221;><br />
&lt;TR><br />
    &lt;TD class=&#8221;alignRight&#8221; nowrap width=&#8221;156&#8243;>First Name:&nbsp;&lt;/TD><br />
    &lt;TD class=&#8221;alignLeft&#8221; colspan=&#8221;3&#8243;><br />
    &lt;spring:bind path=&#8221;firstName&#8221;><br />
&lt;input name=&#8221;${status.expression}&#8221;<br />
value=&#8221;${status.value}&#8221; type=&#8221;text&#8221; id=&#8221;textfield&#8221; accesskey=&#8221;" tabindex=&#8221;1&#8243;><br />
&lt;/spring:bind><br />
&lt;/TD></p>
<p>&lt;/TR><br />
&lt;TR><br />
    &lt;TD class=&#8221;alignRight&#8221; nowrap width=&#8221;156&#8243;>Last Name:&nbsp;&lt;/TD><br />
    &lt;TD class=&#8221;alignLeft&#8221; colspan=&#8221;2&#8243;><br />
    &lt;spring:bind path=&#8221;lastName&#8221;><br />
&lt;input name=&#8221;${status.expression}&#8221; value=&#8221;${status.value}&#8221;<br />
type=&#8221;text&#8221; id=&#8221;textfield1&#8243; accesskey=&#8221;" tabindex=&#8221;2&#8243;><br />
&lt;/spring:bind><br />
&lt;/TD><br />
  &lt;/TR><br />
&lt;TR><br />
	&lt;TD><br />
		&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221;><br />
	&lt;/TD><br />
&lt;/TR><br />
&lt;/form:form><br />
&lt;/spring:nestedPath></p>
]]></content:encoded>
</item>
	<item>
		<title>By: Vasu</title>
		<link>http://www.deepakgaikwad.net/index.php/2009/03/30/spring-mvc-validations-example.html/comment-page-1#comment-2045</link>
		<dc:creator>Vasu</dc:creator>
		<pubDate>Sat, 05 Dec 2009 18:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=560#comment-2045</guid>
		<description>Here, I can&#039;t see the changes which u have made in this jsp file. Pls tell me any other option to see this jsp code.</description>
		<content:encoded><![CDATA[<p>Here, I can&#8217;t see the changes which u have made in this jsp file. Pls tell me any other option to see this jsp code.</p>
]]></content:encoded>
</item>
</channel>
</rss>
