Programming Tutorials

What is JSP Scriptlet?

By: Karthik in Interview Tutorials on 2012-06-16  

Answer: JSP Scriptlet is jsp tag which is used to enclose java code in the JSP pages. Scriptlets begins with <% tag and ends with %> tag. Java code written inside scriptlet executes every time the JSP is invoked.

Example:

        <% 
        //java codes 
         String userName=null; 
         userName=request.getParameter("userName"); 
         %>





Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in Interview )

Latest Articles (in Interview)