pro_java_server thread: Re: Professional Java Server Programming
Hi !
If i underestand your question correctly, You would must type these
command.
res.setContentType("text/html");
ServletOutputStream out=null;
out= res.getOutputStream();
String strResponse = "<HTML>\n<BODY BGCOLOR=#ffffff><BR><CENTER><P>";
strResponse +="that,That's what I really want to do!!Any help would";
strResponse +=" be great, thanks!</P></CENTER></BODY>\n</HTML>";
out.print(strResponse);
out.close();
|





