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 |
we want to provide the errors to the right side of the text field so what we want to add in jsp pages?
How many tags are provided in jstl?
Is jsp server side or client side?
Which tag should be used to pass information from jsp to include jsp?
How to forward a request to another source?
Explain what is jsp ?
What is the jsp:setproperty action?
Why do we need servlets and jsp?
What is jsp and its advantages?
what is difference between the contart and implementation?
What is el?
How can I use the results of my method? ea: <%! method (int x) { stuff return y; } %> <% out.println(y); %> how can I make this work? "y" is a variable made during the method.