I have two HTML pages: form.html and display.html. In form.html, there is a form:
type="text" name="serialNumber" /> type="submit" value="Submit" /> The form data is sent to display.html. I want to display and use the form data serialNumber in display.html, something like the following:
id="write">The serial number is: function show() { document.getElementById("write").innerHTML = serialNumber; } 
Faizan AmjadPosted Sep 3, 2014, 11:41 AM
But I want to know is there any way i directly use Get method to transfer data in HTML without using JavaScript ?
Here Is my Code
Code to Enter Input
Display Page Code
Ramesh MaruthiPosted Sep 3, 2014, 10:44 AM