I want to print the two values by using single jsp expression tag is it possible?
<% int a=5;
int b=10;
int c=a+b;
%>
The values of a,b and c are: <%=a,b,c%>
I have to individually write jsp expression for each variables or the above code is correct.. in jsp.
Thanks..