What is the jsp:getproperty action?
Answer / Snehil Srivastava
The jsp:getproperty action retrieves the value of a specified property from a JavaBean. It's used to access the properties of a bean that was defined with <jsp:usebean>.
| Is This Answer Correct ? | 0 Yes | 0 No |
Mention the various implicit objects used in the expression
What is the use of jstl tags in jsp?
How do I mix jsp and ssi #include? What is the difference between include directive & jsp:include action?
Can you use javascript in jsp?
What is jstl (jsp standard tag library)?
What are directives in jsp?
How to delete a cookie in jsp?
Explain the action.
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 are the different directives in jsp?
What is pagecontext?
Can u Override any of the lifecycle methods of JSP?