answersLogoWhite

0

What else can I help you with?

Continue Learning about Information Science

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.


What is the difference between request query string and requestform collection?

If the HTTP request method is POST, the user submitted data is in the Request.Form() collection If the HTTP request method is GET, then user submitted data is in the Request.QueryString() collection However, you can still do: <form method="post" action="page.asp?data=value"> <input type="text" name="txtName" value="Name"> </form> and Request.Form("txtName") will contain "Name" -and- Request.QueryString("data") will contain "value"


Which is the primary source of information used for insurance underwriting?

The primary source of information used for insurance underwriting is the application form submitted by the applicant. This form includes information about the individual's personal details, medical history, lifestyle habits, and other relevant factors that help insurers assess the level of risk associated with providing coverage to that individual.


What is the advantage of using data form with table information?

Using a data form with table information can make it easier to visually organize and input data into specific fields. It can also help with data validation and error checking, as well as facilitate filtering and sorting of the information within the table.


What is the adjective form of information?

The adjective form of "information" is "informative."

Related Questions

What is doPost in servlet?

doPost() is the method in the servlet that is used to service the Http requests submitted using the Post option. HTML forms can be submitted in two ways using the Get method and the Post method. You can specify the method while declaring the form itself. So you will have two methods in the servlet doGet() and doPost() each for one of them


What are Two methods data can be submitted to a web server?

The two methods for submitting data to a server GET and POST When ever you open a web page you are using the GET method. POST is primarily used with forms where you input information, though not always. A search engine generally uses the GET method, even though you are entering information into a form. When the GET method is used, the form fields are added onto the URL. In a POST the fields are submitted 'behind the scenes' and not visible to the user.


How to make a form in HTML?

You can create a Form in HTML using the <FORM> tag. A sample form tag would be like <FORM name = "xxx" method = "xxx" action = "xxx"> ..... </FORM> Here name refers to the name of the form. This is the name with which you can call the form elements. Method refers to the way the form elements would be submitted. Either a GET or a POST Action refers to the URL to which the form is supposed to submit the information when the request is submitted. The <FORM> and </FORM> tags enclose all the form elements. The form can have text fields, buttons, radio buttons, check boxes etc...


Attribute of form tag?

<form name=".." action="..." method="...."> and </form> Change .. with the name of the form. Change ... with the website you want it to go to once the form has been submitted. Change .... with the method so either get or post


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.


Is it possible to update the DS-160 form after it has been submitted?

Yes, it is possible to update the DS-160 form after it has been submitted. You can make changes to the form before your visa interview by logging back into your account using the confirmation number and barcode from your submitted DS-160 form.


Is it possible to make changes to the DS-160 form after it has been submitted?

Yes, it is possible to make changes to the DS-160 form after it has been submitted. You can access your form using the application ID and answer security questions to make necessary edits.


Can you give me a sentence for the word errant?

The client submitted erroneous information on the insurance form, and therefore, was denied coverage.


Is it possible to edit the DS-160 form after it has been submitted?

Yes, it is possible to edit the DS-160 form after it has been submitted, but only before your visa interview. You can make changes by logging back into your DS-160 application using your application ID and answer the security questions. Make sure to review and update all information accurately before your interview.


Who is the secure in post and get method?

Post is more secure method in forms. It does not supply the form information in the URL.


What is a correct way to retrieve the lastname input field from a form submitted with a post method?

The correct way is to define an input type. The format for it would be <form action="" type="post"><input type="text"/></form>


What is the difference between request query string and requestform collection?

If the HTTP request method is POST, the user submitted data is in the Request.Form() collection If the HTTP request method is GET, then user submitted data is in the Request.QueryString() collection However, you can still do: <form method="post" action="page.asp?data=value"> <input type="text" name="txtName" value="Name"> </form> and Request.Form("txtName") will contain "Name" -and- Request.QueryString("data") will contain "value"