> -----Original Message----- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 1:22 PM > To: Struts Users Mailing List > Subject: Re: Servlet help for a Struts programmer > > > At 12:57 PM 8/10/2004, you wrote: > >Yes, Struts is based on Servlets, but you don't have to know > >anything about Servlets to make a useful Struts webapp. > > I wonder if this is true. I cannot imagine that it could be. > Maybe it > is. I am beginning to think so. ///;-)
Try it yourself.... no JSP's. No struts, and basic CRUD operations on an address book. Now today, you would probably be smart. You would have a CRUD servlet for the "actions", that would redirect to a servlet for generating HTML. That's 4 serlvets handling CRUD, one servlet to generate the add/edit form page, one servlet to generate the list address page. And no, you don't get to use jakarta's ECS either!!! Nope. Not at all.. you can however drool over it :) out.println( "<html>"); out.println( "<head>"); out.println( "<title>THis is the title of my page.</title>"); <out.println( "</head>"); Or: out.println( "<html>" +"<head>" +" <title>This is the title of my page.</title>"); +"</head>"); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]