RE: can jsp's import text?

2002-06-27 Thread Eric Everman
At 03:01 PM 6/27/2002, you wrote: >Use the tag. >This just drags the text into the page as is. >If you want to parse it in the page, I think this might work: > ><% > String extContent = ""; > // now do stuff with extContent >%> > >cheers >Rory No, I'm pretty sure the above won't

RE: can jsp's import text?

2002-06-27 Thread Douglas, Rory
Title: RE: can jsp's import text? Use the tag. This just drags the text into the page as is. If you want to parse it in the page, I think this might work: <%     String extContent = "";     // now do stuff with extContent %> cheers Rory -Original Me