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 comment out in jsp?

0 Answers  


Tell us about the stages (phases) of the jsp life cycle.

0 Answers  


How does the Jsp Expressions works ? What happens at the back?

5 Answers   iFlex, Manhattan,


What are the jsp elements?

0 Answers  


What is difference between java and jsp?

0 Answers  






What is contextpath in jsp?

0 Answers  


How can I implement a thread-safe jsp page?

0 Answers  


What is jsessionid?

0 Answers  


How can the output of JSP or servlet page be prevented from being cached by the browser?

0 Answers  


How does a jsp function?

0 Answers  


How to make a “new line in html” in jsp?

0 Answers  


Can any one explain about the project Approximate shortest distance computing:A query dependent local landmark scheme

0 Answers  


Categories