Difference between Html tags and Struts specific HTML Tags

Difference between Html tags and Struts specific HTML Tags

- HTML tags are static and Struts tags are dynamic.

- Struts tags can be created by the page authors.

- Binding of the property value with the Formbean property is done by the Struts tags.

- HTML tags support the templates and themes.

- Struts have HTML tag libraries and thus HTML tags are integral part of Struts.

Difference between Html tags and Struts specific HTML Tags.

- Most of the tags in the Struts framework use the following attributes:

id : The name of a bean for temporary use by the tag.
name : The name of a pre-existing bean for use with the tag.
property : The property of the bean named in the name attribute for use with the tag.
scope : The scope to search for the bean named in the name attribute.

- Example :
<html:button>
<html:cancel>
<html:checkbox>
<html:multibox>
Contents of web.xml and struts-config.xml
What are the contents of web.xml and struts-config.xml? - The web.xml file contains the information that is used by servlets and JSPs.....
Differences between web.xml and sturts-config.xml
Differences between web.xml and sturts-config.xml - web.xml is utilized to make connections between web application and the web container....
Explain how to communicate from struts to ejb
Explain how to communicate from struts to ejb - The Struts framework strictly implements MVC pattern. The execute() method of Action class can be invoked to interact with the Model part of MVC....
Post your comment