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 can i connect from jsp to servlet page
when we will use the SendRedirect method instead of forward.
How does JSP handle run-time exceptions?
Can init method be overridden?
What is tag file in jsp?
Explain the advantages of jsp?
Which tag is used for error handling in jsp pages?
What is the purpose of <jsp:usebean>?
What is tld in jsp?
Which package does jsp api consist of?
List down the major differences between the jsp custom tags and java beans.
What is difference between html and jsp?