you die.
Yes. All sorts of web Applications/websites can be created using JSP and Servlets
scope of operater
Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.
To create an address book using JSP, you can create a form to input contact information like name, email, phone number, etc. When the form is submitted, you can handle the data in a servlet and store it in a database like MySQL using JDBC. Then, you can retrieve and display this information in the JSP using Java servlets.
how to create a master page in java
JSPs are converted to servlets before the container runs them. This is actually cool because you don't need hardcore java programming skills to create a JSP page whereas you'll need them to write a servlet. Moreover, all you'll need to write a JSP is some expertise in creating HTML files and in using JavaScript. You can create front-end JSP pages without having much expertise in Java at all. Although JSP reduces the required skill level, JSP becomes a servlet, with the nice performance and portability benefits.
We can do validation by using JavaScript. Here we are using function Validate(). Iam creating one JSP name index.jsp & give a link to another JSP name basic.jsp. In that Jsp iam using Type 1 Jdbc Driver & giving a database connection
You can display data in Tabular format in a JSP page using the HTML <Table> Tag. You can even assign dynamic values to the table using JSP Scriptlets. <% %>
first you have to find out what version of j2ee you are using then from there you can lookup the jsp version for that version of j2ee
You can set the value in the hidden form fields using javascript and access the form fields in JSP
You cannot. You display JSP Pages using the help of Servlets. Servlets are of the background classes and you cannot display them
Yes, JSP can output XML. To do this, simply output XML instead of HTML inside the JSP. A good idea is to start the JSP with a <%@page contentType="application/xml; charset=UTF-8" %> header, so that the correct contentType gets set.