| 
 <html>
 <body>
 <form name="myForm">
 First Name: <input type="text" name="firstName"><br>
 Last Name: <input type="text" name="lastName" autocomplete="off">
 </form>
 <script language="JavaScript">
 function function1(){
 window.external.AutoCompleteSaveForm(document.forms[0]);
 myForm.firstName.value="";
 myForm.lastName.value="";
 }
 </script>
 <button onclick="function1();">Save</button>
 </body>
 </html>
 
 
 
 
 |