import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class pro10 extends HttpServlet
{
public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
{
res.setContentType("text/html");
PrintWriter out=res.getWriter();
out.printf("<html><head><title>1ST PROGRAM-pankaj</title></head><body>");
out.printf("HELLO WORLD....");
out.printf("</body>");
}
}
No comments:
Post a Comment