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 are the tools used in your project , How to ask the answer this question
How to include static files in a JSP page?
How jsp is executed?
How many types of jsp tags are there?
Is jsp front end or backend?
Can you make use of a servletoutputstream object from within a jsp page?
What are scripting elements?
how to print a string with out using out.println?
3 Answers Elementus Technologies,
What is session scope?
What is the difference between server side and client side programming?
What are the main tags in jsp?
What is jsp and why do we need it?