web application
Develop a web application to print back the inputs from the user(name, date of birth, address). The solution should have a JSP file which accepts the userâ??s name and sent to Servlets which puts the name in the session and which should be forwarded to another servlet / JSP, which shall print the same back to the user from the session.
Tomcat is available in http://localhost:8080 user : admin/password : admin
We are keen on coding standards (comments, class/ method/ variable naming convention etc.)
View Answers
December 15, 2010 at 1:34 PM
Hi Friend,
Try the following code:
1)form1.jsp:
<html>
<form method="post" action="../GetServlet">
<table>
<tr><td>Enter Name:</td><td><input type="text" name="name"></td></tr>
<tr><td>Enter Address:</td><td><input type="text" name="address"></td></tr>
<tr><td></td><td><input type="submit" value="submit"></td></tr>
</table>
</form>
</html>
2)GetServlet.java:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;
public class GetServlet extends HttpServlet {
public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException {
String name=req.getParameter("name");
String address=req.getParameter("address");
res.setContentType("text/html");
PrintWriter out = res.getWriter();
HttpSession session= req.getSession();
session.setAttribute("sname", name);
session.setAttribute("saddress", address);
RequestDispatcher dispatcher = req.getRequestDispatcher("/jsp/form2.jsp");
if (dispatcher != null){
dispatcher.forward(req, res);
}
}
}
3)form2.jsp:
<%
String name= (String)session.getAttribute("sname");
String address=(String)session.getAttribute("saddress");
%>
<html>
<form>
<table>
<tr><td>Your Name is:</td><td><input type="text" value="<%=name%>"></td></tr>
<tr><td>Your Address is:</td><td><input type="text" value="<%=address%>"></td></tr>
</table>
</form>
</html>
Thanks
Ads
Related Tutorials/Questions & Answers:
web application
web application what is lazy loading in
web based
application
web application
web application Dear friend,
could u plz tell me wats difference bt
web server,
application server,container
with thanks
praveen
Advertisements
Web application
Web application in
web applications which file will execute first either
servlet or jsp
web application
web application Develop a
web application to print back the inputs from the user(name, date of birth, address). The solution should have a JSP file which accepts the userâ??s name and sent to Servlets which puts the name
WEB APPLICATION IN JSP
WEB APPLICATION IN JSP Can you help me with a JSP code which can search and update existing data in mysql database
java web application - Ant
tell me the steps to build and deploy a small
web application on MyEclipse?(like... a directory structure for a
Web application.
a)Create a
WEB-INF directory... deployment descriptor in the
WEB-INF directory for the
Web application.
5
log4j in web application
log4j in
web application Hi all,
I am new to log4j. I want to use log4j in my
web application. I need to write the debug,info,warn into a file... and how to get the logger object in
web application.
Thanks
suresh
Java web Application
Java
web Application Hi! I have developed a java
web application project using netbean IDE with glassfish server. My question is how to create a runnable file from this. How can we make it to a single file? I think it is war
Quartz in web-application
Quartz in
web-application As I am new to Quartz i don't know how to use it in
web-application.I am able to run it in eclipse as a stand alone
application i had tried out some example but am not able to succeed any help
Web application - business layer
Web application - business layer
Design your business layer to be
stateless, which helps to reduce
resource contention and increase... with a stateless
Web application
business layer. If you perform
business
Web Application Common Architecture
Web Application Common Architecture Hi,
Any one tell me, while project constructing , how they architect it which means using some layers and specify importance of layers. And also best way to follow program flow
servlet question on web application
servlet question on
web application how to write a programg on the
web application. create two modules like admin and customer. customer can registrate with user id and password. after finishing of his registration he'll get
HTS Web Application Framework
HTS
Web Application Framework
The HTS
Web Application Framework is a PHP and Javascript based framework
designed to make simple
web applications easy to design and implement
draw chart in web application
draw chart in
web application how to draw bar chat from the record store in database? i.e. draw the bar chart according to selected record
creating a friendly url for web application
creating a friendly url for
web application Hi all,
I don't know how to create a friendly url for a
web application. Please help me to resolve this problem.
Thanks,
Suresh
error in web application
error in
web application In your
application when i am trying to execute it from the below page
<%@ page language="java" import="java.util....; We are providing you another
application. Check it.
1)application.jsp
Web based workflow application example?
Web based workflow
application example? Hello there,
Can anyone please send a sample project which is a
web-based java workflow
application? If it is built using Spring, Struts or JSF Framework it would be wonderful. If you