Tags between custom tags not evaluating

2003-12-15 Thread Andy Engle
Hi all, I am writing a web application in which I would like to have a custom tag that shows some HTML (using some Struts-Form tags) if the tag evaluates to true. But the problem is that my tag isn't interpreting the tags between my custom tags, so my form never shows up. Here is what a portion

RE: Tags between custom tags not evaluating

2003-12-15 Thread Hookom, Jacob
Include the html taglib in your jsp -Original Message- From: Andy Engle [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 4:54 PM To: [EMAIL PROTECTED] Subject: Tags between custom tags not evaluating Hi all, I am writing a web application in which I would like to have a custom

RE: Tags between custom tags not evaluating

2003-12-15 Thread Andy Engle
[mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 4:54 PM To: [EMAIL PROTECTED] Subject: Tags between custom tags not evaluating Hi all, I am writing a web application in which I would like to have a custom tag that shows some HTML (using some Struts-Form tags) if the tag

RE: Tags between custom tags not evaluating

2003-12-15 Thread Hookom, Jacob
I don't see the: %@ taglib uri=/tags/struts-html prefix=html % -Original Message- From: Andy Engle [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 4:58 PM To: Struts Users Mailing List Subject: RE: Tags between custom tags not evaluating Hookom, Jacob [EMAIL PROTECTED] wrote

RE: Tags between custom tags not evaluating

2003-12-15 Thread Andy Engle
Hookom, Jacob [EMAIL PROTECTED] wrote: I don't see the: %@ taglib uri=/tags/struts-html prefix=html % Below is the entire JSP file. Andy --- %@ page contentType=text/html % %@ taglib uri=/WEB-INF/app.tld prefix=app % %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % %@

Re: Tags between custom tags not evaluating

2003-12-15 Thread Martin Cooper
What value are you using in the body-content element for your 'checkLogon' tag (in the TLD)? It should be 'JSP' to have the content evaluated as JSP. -- Martin Cooper Andy Engle [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hookom, Jacob [EMAIL PROTECTED] wrote: I don't see the:

Re: Tags between custom tags not evaluating

2003-12-15 Thread Andy Engle
Martin Cooper [EMAIL PROTECTED] wrote: What value are you using in the body-content element for your 'checkLogon' tag (in the TLD)? It should be 'JSP' to have the content evaluated as JSP. I have tagdependent. I'll try JSP and see what happens. Also, I've placed the tag entry below so you

Re: Tags between custom tags not evaluating (FIXED)

2003-12-15 Thread Andy Engle
Martin Cooper [EMAIL PROTECTED] wrote: What value are you using in the body-content element for your 'checkLogon' tag (in the TLD)? It should be 'JSP' to have the content evaluated as JSP. That's what it was. Thanks for your help! Andy -- Martin Cooper Andy Engle [EMAIL PROTECTED]