What do you know about writing custom jsp tags?
Answer / Sunil Kumar Bhagat
Custom JSP tags (also known as custom actions or tag libraries) are reusable components that encapsulate JSP functionality. They're written in a combination of Java, XML, and JSP syntax. Tags can be standard tags (tag files with .tld extension) or simple tags (tag files with .tag extension).
| Is This Answer Correct ? | 0 Yes | 0 No |
How to delete a cookie in jsp?
How is jsp include directive different from jsp include action. ?
What is the purpose of <jsp:getproperty >?
Java Server Page I can use a function in two ways: Either I declare <jsp:useBean id="myBean" scope="session" class="mypack.mysubpack.MyClass" /> or I declare <%@ page import = "mypack.mysubpack.MyClass" %> In each case I can call a function later by coding MyClass.myFunction(); So what is the difference between the two variantes? Why are Beans invented if we don't need them because we have the import statement ? please guide me its an humble request to you reader if u know n i'll be thankful to you...........
What is the use of 'out' implicit object?
How do I include static files within a jsp page?
What are the jsp elements?
What is taglibs?
What is the need for jsp?
Explain the various scope values for <jsp:useBean> tag.
What is dynamic web project?
What are the implicit objects?