Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have supposed to do 4 actions: CreateUser, Modify, View and delete. After deleting the user details, once again if click on ModifyUser or ViewUser im getting NullPointer Exception. Can some one please help me by correcting my code.


index.jsp
HTML
<body>
<form>
<a href="NewUser.jsp">New User</a>
<a href="ModifyUser.jsp">Modify User</a>
<a href="ViewUser.jsp">View User</a> 
<a href="DeleteUser.jsp">Delete User</a>

<form>
<body>


Java
ModifyUser(Action class)

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
  User user = new User();
  User user1 = new User();

  HttpSession session = request.getSession(true);

  user.setFirstName(request.getParameter("FirstName"));
  user.setLastName(request.getParameter("LastName"));
  user.setUserId(request.getParameter("UserId"));
  user1.setContactNumber(request.getParameter("ContactNumber"));
  user1.setLandLine(request.getParameter("LandLine"));

  session.setAttribute("modifiedUserInfo",user1);
  response.sendRedirect("EditedDetails.jsp");

  if(session.getAttribute("modifiedUserInfo")==null)
  {
    response.sendRedirect("NoUser.jsp");   
  }
}


[edit]Code block added[/edit]
Posted
Updated 12-Jun-13 0:12am
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900