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 |
How do I set password expire time period?
What is _jspservice method?
Why we use jsp instead of html?
Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page?
How will you use jsp el in order to get the http method name?
What are the types of jstl tags?
What is scriptlet tag in jsp?
What is the purpose of creating custom tags?
What is jstl (jsp standard tag library)?
How can we avoid direct access of jsp pages from client browser?
What is jsp processing?
Which jsp methods can be overridden?