Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_java_server thread: Re: Professional Java Server Programming


Message #1 by "jawahar" <jsp_xml@y...> on Sat, 2 Dec 2000 06:21:03 -0000
     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();
     
     
     
     


  Return to Index