JSP Taglib directive Sarfraz Alam March 02, 2018 JSP Taglib directive The JSP taglib directive is used to define a tag library that defines many tags. We use the TLD (Tag Library Descri... Read More
JSP include directive Sarfraz Alam March 02, 2018 JSP Include Directive The include directive is used to include the contents of any resource it may be jsp file, HTML file or text file. ... Read More
JSP Directives Sarfraz Alam February 28, 2018 What are JSP Directives? JSP directives are the messages to JSP container. They provide global information about an entire JSP page. JS... Read More
Introduction to JSP Sarfraz Alam February 15, 2018 JSP is Java's answer to the popular Microsoft's Active Server Pages (ASP). JSP, like ASP, provides a simplified and fast mean to... Read More
Comments in Jsp Sarfraz Alam February 14, 2018 JSP comments are very similar to HTML. They are not displayed in the Output of the program when it is executed. They do not affect the siz... Read More
Sum of two numbers in JSP Sarfraz Alam February 10, 2018 First JSP Program Create two pages page1.jsp <html> <head><title>Su... Read More