hai iam posting the part of code whihc iam getting problem
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out
.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD><TITLE>A
Servlet</TITLE></HEAD>");
out.println(" <BODY>");
out.print(" This is ");
out.print(this.getClass());
out.println(", using the POST method");
Enumeration myEnum =request.getParameterNames();
out.println(" </BODY>");
At the Enumeration myEnum "red mark appeard".
iam using myeclipse
ide.
and i studied that the problem there is "can not be resoloved to a type".
could you help me in this regard how to proceed.