How to deactivate el on jsp?
Answer / Nakul Srivastava
To deactivate EL (Expression Language) in JSP, you can use the `<%` and `%>` delimiters instead of `${...}` for scriptlets. However, it's generally discouraged as EL provides a cleaner syntax.
| Is This Answer Correct ? | 0 Yes | 0 No |
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 purpose of jsp and why it is widely used?
When will container initialize multiple jsp/servlet objects?
What are different types of comments used in jsp?
What is jsp servlet?
How is scripting disabled?
What are the 3 tags used in jsp bean development?
which situation you use static include and dynamic include in jsp?
What is the <jsp:forward> standard action?
What is session getattribute in jsp?
how to extends one jsp page to another jsp page with realtime example?
What's the difference between an import and include directive, and also the difference between include directive and include action?