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>");
The point, however, Denis, is that you DON'T want to do this. This is not good Servlet programming. Struts is. Crudy programs are too. LOL
Michael
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]