Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

plz see this program

OpenStudy (anonymous):

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

OpenStudy (anonymous):

i need help in this

OpenStudy (anonymous):

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.

OpenStudy (shadowfiend):

If you tell us what you're trying to do and actually provide the entire program, we can see if we can help.

OpenStudy (anonymous):

i need the debugging what will give me by explain plz

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!