plz see this program
import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class ExampServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.println("<title>Example</title>" + "<body bgcolor=FFFFFF>"); out.println("<h2>Button Clicked</h2>"); String DATA = request.getParameter("DATA"); if(DATA != null){ out.println(DATA); } else { out.println("No text en
i need help in this
What kind of help, your code is not complete, i don't know java but c#, pretty much same, so may be i can help you, if you tell a little bit more details.
If you tell us what you're trying to do and actually provide the entire program, we can see if we can help.
i need the debugging what will give me by explain plz
Join our real-time social learning platform and learn together with your friends!