how to maintain sessions in jsp?can you tellme the methods.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Which package does jsp api consist of?
how to u se in jsp
Which is mandatory in tag in jsp?
Is jsp compiled?
What is the use of jsp and servlet?
What is a jsp file?
What's the difference between javabeans and taglib directives?
hi i m tannu and i m developing one web site as my project and i have created one chatting application using applet and socket it run perfactly using netbeans5.5 and appletviewer but when i run on browser it doent run i put it class file in jar file then call by jsp when it load in browser it stop on applet started plz help me soon
What is the <jsp:usebean> standard action?
Explain the jsp implicit objects?
What are the different types of jsp directive?
List all tags that are provided in jstl?