Re: Pass scrape taglib to a method (string)

2003-08-30 Thread Hassan Schroeder
Karen D. Wiens wrote: Thank you for responding. I've tried this and I'm still getting a syntax error. <% // snag text and stick it into 'teststring' ; %> Yep, that'll create one :-) -- don't enclose these tags: in a scriptlet section ( the <% ... %> ) -- Hassan Schroeder -

RE: Pass scrape taglib to a method (string)

2003-08-30 Thread Karen D. Wiens
Thank you for responding. I've tried this and I'm still getting a syntax error. I replaced: > <% // snag text and stick it into 'teststring' > > String teststring = pageContext.getAttribute( " scrape="pj3"/>" ); With: <% // snag text and stick it into 'teststring' ; %> And got the following

Re: Pass scrape taglib to a method (string)

2003-08-30 Thread Hassan Schroeder
Karen D. Wiens wrote: How can I pass the value of the scrape taglib to a method? It seems to me that it should be something like: <% // snag text and stick it into 'teststring' String teststring = pageContext.getAttribute( "" ); %> One approach: HTH! -- Hassan Schroeder