Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Struts
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams
this week in the
Agile and Other Processes
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Devaka Cooray
Ron McLeod
Paul Clapham
Liutauras Vilda
Sheriffs:
paul wheaton
Jeanne Boyarsky
Tim Cooke
Saloon Keepers:
Stephan van Hulst
Tim Holloway
Tim Moores
Mikalai Zaikin
Carey Brown
Bartenders:
Forum:
Struts
which jar file need to strug.taglib
shawn peter
Ranch Hand
Posts: 1325
1
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
here is my one of
jsp
file
<%@ taglib uri="/tags/struts-bean" prefix="bean" %> <%@ taglib uri="/tags/struts-html" prefix="html" %> <html:html locale="true"> <head> <title><bean:message key="welcome.title"/></title> <html:base/> </head> <body bgcolor="white"> <html:form action="/Address"> <html:errors/> <table> <tr> <td > <font size="4">Please Enter the Following Details</font> </tr> <tr> <td > Name </td> <td > <html:text property="name" size="30" maxlength="30"/> </td> </tr> <tr> <td > Address </td> <td > <html:text property="address" size="30" maxlength="30"/> </td> </tr> <tr> <td > E-mail address </td> <td > <html:text property="emailAddress" size="30" maxlength="30"/> </td> </tr> <tr> <td > <html:submit>Save</html:submit> </td> <td > <html:cancel>Cancel</html:cancel> </td> </tr> </table> </html:form> </body> </html:html>
it asking for tag libraries.
which jar file need to add this.
Sagar Rohankar
Ranch Hand
Posts: 2908
1
I like...
posted 14 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Two Ways:
1. Download
Struts
version < 1.3 and in sample web application war file, you can find the tld in WEB-INF dir.
2. In Struts > 1.3 the tlds resides in 'struts-taglib-1.3.x.jar' file.
[LEARNING bLOG]
|
[Freelance Web Designer]
|
[and "Rohan" is part of my surname]
Enjoy the full beauty of the english language. Embedded in this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
nothing is happening in action class when i submit a page(struts )
html:errors
Struts validation not working
Getting an Exception
adding tag lib
More...