Dear Expert, I have the website where the html web Forms are exist....... so i just want to once people fill the form . the next time the fields automatically filled out. because fields are same to all web forms. Please give me the script or any suggestion Thanks Sagheer
You can save the entry on serer and next time when you output html to people you suggest entry. <form action="form_action.asp"> First name: <input type="text" name="fname" value="John" /><br /> Last name: <input type="text" name="lname" value="Doe" /><br /> <textarea rows="2" cols="20"> At W3Schools you will find all the Web-building tutorials you need, from basic HTML to advanced XML, SQL, ASP, and PHP. </textarea> <input type="submit" value="Submit form" /> </form> HTML:
This is what i know. but i just want to people file the form and next time they don't need to fill... simply cookie . Sagheer
Send a cookie with the data in the form once you've validated it. If the cookie exists, use the data in it to fill in the form. (That's the kind of thing cookies were invented for.)