Sat Jun 09, 2007 2:08 pm
/*
* Test.java
*
* Created on January 27, 2007, 10:44 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package firstservelt;
import com.sun.corba.se.spi.activation.Server;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.*;
public class Test extends HttpServlet {
/** Creates a new instance of Test */
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException
{
resp.setContentType("text/html");
PrintWriter out=resp.getWriter();
out.println("");
out.println("");
out.println("Hello Codemiles is comming");
out.println("");
}
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.