answersLogoWhite

0

you die.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Can you create web forums using jsp and servlets?

Yes. All sorts of web Applications/websites can be created using JSP and Servlets


Create a table using JSP Servlets?

scope of operater


Can you create a database with only a form?

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.


How do you create an address book using jsp and store all the information?

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.


Describe jsp processing?

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.


How do you create master page in jsp?

how to create a master page in java


Creating menu using jsp with coding?

To create a menu using JSP (JavaServer Pages), you can utilize HTML combined with JSP tags to dynamically generate menu items. Start by defining a simple HTML structure for your menu, using <ul> and <li> elements. You can incorporate JSP scriptlets or expressions to pull menu item data from a database or an array, allowing for dynamic content generation. For example: <ul> <% String[] menuItems = {"Home", "About", "Services", "Contact"}; for (String item : menuItems) { %> <li><a href="<%= item.toLowerCase() %>.jsp"><%= item %></a></li> <% } %> </ul> This example creates a basic menu with links to corresponding JSP pages.


How validate and retrieve data from database in jsp?

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


How the data is viewed in a JSP in the form of table?

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. <% %>


How do we find a jsp version in Java?

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


How do you transfer values from javascript to JSP?

You can set the value in the hidden form fields using javascript and access the form fields in JSP


How do you create controller for a jsp page?

To create a controller for a JSP page, you typically use a servlet that handles incoming HTTP requests. This servlet processes the request, interacts with any necessary business logic or data models, and then forwards the request and relevant data to the JSP page using a RequestDispatcher. You can set attributes in the request scope to pass data to the JSP, and finally, return the response by calling request.getRequestDispatcher("yourPage.jsp").forward(request, response);. This separation of concerns helps maintain a clear architecture between the presentation layer and business logic.