| |
Tag Syntax and explanation Learn some JSP tags
| JSP tag type |
Syntax |
|
| Directive |
<%@ %> |
|
| Declaration of Variables |
<%! %> |
If you want to declare any variables we can use this |
| Scriptlet |
<% %> |
Write java code in this block |
| Expression |
<%= %> |
print values of variablesin the JSP page |
| Comments |
<%-- --%> |
Comments of the JSP page |
Please send comments to vgdarur.javafive@blogger.com
|