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 iselignored in jsp?
What are the three tags used in jsp bean development?
What are scripting elements?
What is pagecontext?
Can I use javascript on jsp page?
Where we use assertion in java programming?
Can you disable jsp scripting?
What is jsp and its features?
Explain the various scope values for tag.
What is pagescope in jsp?
What are the implicit el objects in jsp?
What is difference between jsp and javascript?