Structure Query Language, C programming, Java, Servlet, Jsp, Unix

Sunday 22 April 2012

Write a JSP Page to use JSP scripting.


<%-- THIS IS DECLARATIVE  --%>
<%! int a=10, b=90; %>
<%-- THIS IS SCRIPTLET   --%>
<%
b=40;
a=a+b;
%>
<%-- THIS IS EXPRESSTION   --%>
<table width=100% height=100% >
<tr>
<td align=center>
<table border=25>
<tr>
<td bgcolor="limegreen">
<font face="verdana" size="5">VALUE OF A :
<%= a %> <br>

VALUE OF B :
<%= b %>
</table>
<tr>
<td align=center>
<h2><i>Example  of  Scipting</i></h2>
</table>

No comments:

Post a Comment