
- Forum
- Programming Talk
- Java
- Normal HTML tags Vs Struts HTML tags
Normal HTML tags Vs Struts HTML tags
This is a discussion on Normal HTML tags Vs Struts HTML tags within the Java forums, part of the Programming Talk category; What is the difference between normal HTML tags and Struts HTML tags?...
-
02-07-2012, 02:36 AM #1
- Join Date
- Jan 2006
- Answers
- 16
Normal HTML tags Vs Struts HTML tags
What is the difference between normal HTML tags and Struts HTML tags?
-
HTML tags are static whereas Struts tags are dynamic
Struts tags are called during run-time.
Struts tags support custom tags and provides convenient attributes.
Though you can mix up the tags, it is recommended to keep consistency in your code.
-
02-22-2012, 07:11 AM #3
- Join Date
- Feb 2012
- Answers
- 66
Struts html tags are directly bind to the form bean using ActionForm where as normal html tags cannot bind with form beans.
The web container loades the jsp from the scratch if normal html tags are used where as struts tags loads with the pre-compiled codeand hence struts tags improves the performance.
-
04-16-2012, 03:58 PM #4
- Join Date
- Apr 2012
- Answers
- 12
I still have quite a bit of studying to do in order to further understand this. However, this explanation definitely helps me further grasp this comparison and contrast of different types of HTML coding.
-
I never knew Struts were what I would need for creating dynamic pages. Would I use this if I were to create a navbar that would constantly change every time I add a new page?
-
Sponsored Ads

Reply With Quote





