XMLHttpRequest Question: Download XHR2 PDF

How do we pass parameters to the server?

Tweet Share WhatsApp

Answer:

Below are the two ways of passing data to server. The first one shows by using GET and the second by POST.

xmlHttpObj.open("GET","http://" + location.host +
"/XmlHttpExample1/WebForm1.aspx?value=123", true);
xmlHttpObj.open("POST","http://" + location.host +
"/XmlHttpExample1/WebForm1.aspx?value=123", true);

Download XHR2 PDF Read All 28 XHR2 Questions
Previous QuestionNext Question
Explain setRequestHeader("label", "value")?Explain the purpose of each of the HTTP request types when used with a RESTful web service?