RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Karen D. Wiens
Hello all, I understand this but the problem is that I need to use the output within a scriplet. Is that possible? c:set var=teststringscrp:result scrape=pj4//c:set c:out value=${teststring} / Will output the string but I can't use it within a scriplet If I call the variable teststring in a

RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Kris Schneider
Try: c:set var=teststringscrp:result scrape=pj4//c:set jsp:useBean id=teststring type=java.lang.String/ %= teststring % Quoting Karen D. Wiens [EMAIL PROTECTED]: Hello all, I understand this but the problem is that I need to use the output within a scriplet. Is that possible? c:set

RE: Pass scrape taglib to a method (revisited)

2003-10-16 Thread Karen D. Wiens
That works perfectly!! Thank you so much!! -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 12:40 PM To: Tag Libraries Users List Subject: RE: Pass scrape taglib to a method (revisited) Try: c:set var=teststringscrp:result scrape=pj4