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 |
hi i m tannu and i m developing one web site as my project and i have created one chatting application using applet and socket it run perfactly using netbeans5.5 and appletviewer but when i run on browser it doent run i put it class file in jar file then call by jsp when it load in browser it stop on applet started plz help me soon
What is jsp custom tag and what are it’s components?
Differentiate between <jsp:include page=…> and <%@include file=…>.
How to disable session in jsp?
How can we handle exceptions thrown by jsp service method?
What are the benefits of pagecontext implicit object?
How to make a “new line in html” in jsp?
Is jsp and javascript same?
How can we use beans in jsp?
How do I open a jsp file?
Explain some jsp life-cycle methods that can be overridden.
What is a scriptlet?