answersLogoWhite

0

Code for log in page in jsp?

Updated: 12/18/2022
User Avatar

Wiki User

13y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Code for log in page in jsp?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between requestgetattribute and requestgetParameter in JSP?

request.getAttribute() is used on the Server side Java code to get values submitted from the form onto the Servlet or other java classes request.getParameter() is used on the JSP page to get values sent by the servlet and display it in the jsp page


What is the syntax to call a jsp page from HTML button?

There are several ways to use an HTML button to go to a web page. You can keep it simple. This example uses "page.jsp" in the same directory as your HTML page for your target location. You can use the following code:


Can I prevent the creation of a session in a JSP page?

Yes you can. Use the below line in your JSP page to accomplish it. <%@ page session="false" %>


What are the Implicit object in JSP?

The implicit objects in a JSP page are:requestresponsepageContextsessionapplicationoutconfigpage


What are the JSP lifecycle methods?

The 3 life cycle methods in a JSP page are:jspInit() - Called when the JSP page is initializedjspService() - Called everytime a request/response is received/submittedjspDestroy() - Called when the JSP is no longer required


When you forward a JSP page which built-in JSP object goes out of scope?

application


Is it possible to include a doc file in a JSP page?

Yes. You can embed spreadsheets, pdfs and word documents in a JSP Page


How many page directive can use in a single JSP?

There is no limit as such. You can use one or more Page Directives in a JSP but you cannot have duplicates


How does a JSP page handle run-time exceptions?

You can use the errorPage attribute of the page directive. If this attribute is defined in a JSP page, when a run time exception is encountered, the control will be transferred to this JSP page. This error page can access details of the Exception from the request and use it to display a logical message to the user.


The Anatomy of a JSP page?

A JSP page consists of HTML markup mixed with Java code enclosed in scriptlet tags (<% %>), expression tags (<%= %>), declaration tags (<%! %>), and directive tags (<%@ %>). During execution, the JSP engine translates the page into a servlet, which can dynamically generate content to be sent to the client. JSPs allow for the separation of presentation and business logic in web applications.


What is the purpose of page directive in JSP?

The Page Directive is one of the important components of any JSP Page. It can help us define page specific properties like Buffer size or location of an error page etc A JSP page, and any files included via the include directive, can contain one or more page directives but no duplicates. The JSP container will apply all the attributes to the page. The position of these page directives is irrelevant, but it is good practice to keep them together at the top of the page. (So that we can identify them easily)


How do you create master page in jsp?

how to create a master page in java