In this section, we are going to describe the textarea tag. The textarea tag is a UI tag that is used to render an HTML textarea.
Add the following code snippet into the struts.xml
file.
struts.xml
| <action name="textareaTag"> <result>/pages/uiTags/textareaTag.jsp</result> </action> |
Create a jsp using the tag <s:textarea >
that renders an HTML textarea tag.
<s:textarea label="Description" name="description" cols="15" rows="10" />
tag displays an HTML textarea with label
equal to Description, column value=15 and row value=10.
textareaTag.jsp
|
<%@ taglib prefix="s" uri="/struts-tags" %> <html> <head> <title>Textarea Tag Example</title> <link href="<s:url value="/css/main.css"/>" rel="stylesheet" type="text/css"/> </head> <body> <h1><span style="background-color: #FFFFcc">Textarea Tag Example!</span></h1> <s:form> <s:textarea label="Description" name="description" cols="15" rows="10" /> </s:form> </body> </html> |
Output of the textareaTag.jsp:
![]() |
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.
Ask Questions? Discuss: Textarea Tag (Form Tag) Example View All Comments
Post your Comment