JSP Tags/ Elements (1)Scriptlet Standard syn:- <%.........%> xml syn:- <jsp:scriptlet>...</jsp:scriptlet> Note: All scripting tags allows us to place script code(java code) 1.)The code placed in scriptlet go to _jspService(-,-) of JES class 2.)In a jsp page we can have zero or more scriptlets 3.)We place request processing logics in scriptlets 4.)Variables declared in scriptlets becomes the local variables in _jspService(-,-) of JES class in first.jsp In first.jsp: <% int a=10; out.println("square:"+(a*a));%> In first_jsp.java(JES): public class first_jsp extends..{ public void _jspService(-,-){ int t=30; out.println(“Square:”+(t*t)); } } The code placed in scriptlet can use implicit objects of jsp because implicit objects and the code placed scriptlet goes to _jspService(-...
Comments
Post a Comment