Home Spring Spring3.2 The input tag



The input tag
Posted on: January 14, 2013 at 12:00 AM
In this tutorial, you will learn about the input tag of Spring form tag library.

The input tag

In this tutorial, you will learn about the input tag of Spring form tag library.

The input in Spring is used to define an input field where user can enter data. The input tag of Spring form tag library renders an input field and default type is set as type="text". Post Spring 3.1, you can use other types such as HTML5-specific types like 'email', 'tel', 'date', etc.

You can define Spring tag library input tag as follows :

<form:input path="name" />

The complete form with <form:input> tags is given below :

<form:form>
<table>
<tr>
<td>First Name:</td>
<td><form:input path="firstName" /></td>
</tr>
<tr>
<td>Last Name:</td>
<td><form:input path="lastName" /></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Save Changes" />
</td>
</tr>
</table>
</form:form>

 

Related Tags for The input tag:


More Tutorials from this section

Ask Questions?    Discuss: The input tag  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.