Re: printing struts from jspWriter

2005-02-24 Thread N G
Jon, If I understand you correctly (forgive me if I am not)... Consider out.println() as a direct System.out.println() type of thing, but your out.println() prints directly to the browser (so to speak). So, essentially, you are just sending the string "test" to the browser. is a custom tag tha

printing struts from jspWriter

2005-02-23 Thread Jon
Hi pple, Suppose I want to use struts code from my java classes and then ask the jspWriter to print it, eg. out.println("test"); the struts tag does not get translated into html. Is there a way to get print struts code from java code properly? thank you ---