Explain scripting elements in JSP.
Answers
Answered by
1
In JSP there are three types of scripting elements: JSP Expressions: It is a small java code which you can include into a JSP page. The syntax is “<%= some java code %>” JSP Scriptlet: The syntax for a scriptlet is “<% some java code %>”.
Similar questions