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

Answer Posted / brindha.d

using session oject in jsp.
first u set using following methods
String name="ravi";
session.setAttribute("user",name);
using retrive method
String sessionuser=session.getAttribute(name);
out.println("welcome"+sessionuser);
u give this last 2 stmts in all jsp pages. it will
display as "Welcome ravi".

Is This Answer Correct ?    121 Yes 55 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of jsp tags?

491


Why session is used?

471


What are jsp action tags?

464


What is expression tag in jsp?

492


What is translation phase?

577






What are the literals used in jsp?

585


Can we define a class in a jsp page?

509


Explain scriptlet, expression and declaration in jsp.

562


Can we call servlet from jsp?

477


How to use jsp el to get http method name?

498


How to call java method in jsp page on button click?

1007


How many types of jsp tags are there?

490


Explain static method?

561


List the different scope values for the tag in jsp?

530


How can we avoid direct access of jsp pages from client browser?

630