how to maintain sessions in jsp?can you tellme the methods.
Answer Posted / mayur patel
start session oject in jsp.
first u set using following methods
String name="Mayur4453";
session.setAttribute("user",name);
using retrive method
String suser=session.getAttribute("user");**
out.println("Hi. . !! welcome "+suser);
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
Can a constructor be used in place of init() method to initialize a servlet?
How can I override the jspinit() and jspdestroy() methods within a jsp page?
Is jsp and javascript same?
Why is _jspservice () method starting with an '_'?
What is asp and jsp?
What is Include directive?
What is the difference between include directive and include action?
How can we handle the exceptions in jsp?
What is a declaration?
What is jsp tag?
What are different types of comments in jsp?
mention the three important tags used in the development of jsp bean.
What is the purpose of
how to insert star image and need to rate it.. one star two star so on how to do in jsp...????
What is scriptlet and what is expression?