how to maintain sessions in jsp?can you tellme the methods.

Answers were Sorted based on User's Feedback



how to maintain sessions in jsp?can you tellme the methods...

Answer / asra

<%session.setAttribute("user","Murali");%>

Below statement you can use in any JSP to print the
welcome message. Start using JSP tags to better performance
and better coding.

Welcome to <%=session.getAttribute("user")%>

Is This Answer Correct ?    5 Yes 6 No

how to maintain sessions in jsp?can you tellme the methods...

Answer / vipin

<session.getAttribute(name);>

Is This Answer Correct ?    4 Yes 7 No

how to maintain sessions in jsp?can you tellme the methods...

Answer / faizan samad

String name="faizan";
session.setAttribute("user",name);


String sessionuser=session.getAttribute(name);
out.println("welcome"+sessionuser);
it will display as "Welcome Faizan".

Is This Answer Correct ?    17 Yes 22 No

how to maintain sessions in jsp?can you tellme the methods...

Answer / vilu

HttpSession session = request.getSession(true);

Is This Answer Correct ?    4 Yes 13 No

how to maintain sessions in jsp?can you tellme the methods...

Answer / prasanthi

small correction in answer 1:
session.setAttribute("user",name);
using retrive method
//String sessionuser=session.getAttribute(name);
String sessionuser=(String)session.getAttribute(name);

Is This Answer Correct ?    6 Yes 16 No

how to maintain sessions in jsp?can you tellme the methods...

Answer / vali

hi this is naru

Is This Answer Correct ?    32 Yes 75 No

Post New Answer

More JSP Interview Questions

How do you restrict page errors display in the JSP page?

2 Answers   IBM, TCS,


Explain the <jsp:param> action?

0 Answers  


When will container initialize multiple jsp/servlet objects?

0 Answers  


What is server context?

0 Answers  


Can we use jstl in html?

0 Answers  






How to delete a cookie in a jsp?

0 Answers  


How can html output be prevented from being cached?

0 Answers  


What are the jsp elements?

0 Answers  


What is the jspdestroy() method?

0 Answers  


What are the different types of directives available in jsp?

0 Answers  


Define scriptlet, expression and declaration in jsp?

0 Answers  


Can you override jspinit() method? If yes, in which cases?

0 Answers  


Categories