how to print a string with out using out.println?
Answers were Sorted based on User's Feedback
Answer / shanthi
Using the expression tag of jsp, strings could be printed.
For eg. String S="fruit";
<%=S%> Semicolons chould not be included here, because
whatever is enclosed inside <%= "" %> will be given as
arguments to out.println().
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / sk
set any variable as property in the tag then use that
<%c:out value="${ }"%>
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bhanu
with the help of expression tag of jsp ...
<%= "javawoorld" %>
| Is This Answer Correct ? | 2 Yes | 3 No |
What is the difference between servletcontext and pagecontext?
Why is used in jsp?
Are dialogue tags necessary?
What is the purpose of <jsp:setproperty >?
Which categories can be divided jstl tags, give examples.
Can you disable the caching on the back button of a particular browser?
Can u Override any of the lifecycle methods of JSP?
Give a sample jsp configuration in the deployment descriptor.
Explain how you understand the action tag and jsp action elements.
How does the Jsp Expressions works ? What happens at the back?
What is jsessionid?
How is scripting disabled?