In your web.xml Try ================================================================= <taglib> <taglib-uri>/html</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location> </taglib> <taglib> <taglib-uri>/nested</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-nested.tld</taglib-location> </taglib> <taglib> <taglib-uri>/bean</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location> </taglib> <taglib> <taglib-uri>/logic</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location> </taglib> =================================================================
And in the jsp <%@ taglib uri="/bean" prefix="bean" %> <%@ taglib uri="/logic" prefix="logic" %> <%@ taglib uri="/nested" prefix="nested" %> <%@ taglib uri="/html" prefix="html" %> I hope this helps .. Regards Guru -----Original Message----- From: vikas rao [mailto:[EMAIL PROTECTED] Sent: 01 May 2007 05:40 To: Struts Users Mailing List Subject: HELP!! Hi, I am getting this exception: org.apache.jasper.JasperException: /index.jsp(9,0) No tag "" defined in tag library imported with prefix "html" My index.jsp file code starts like this: <%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %> so what is the problem? I have added this in the web.xml file: <taglib> <taglib-uri>/WEB-INF/tlds/struts-html.tld </taglib-uri> <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location> </taglib> </web-app> I am sooo frustrated, cant make a single struts program work :(. help!! vikas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]