I want to write the data entered in the HTML controls such as "Textbox", "Combobox" to a Text file using HTML or Javascript.
Printable View
I want to write the data entered in the HTML controls such as "Textbox", "Combobox" to a Text file using HTML or Javascript.
You can access and use the file system by instantiating the FileSystemObject as a new ActiveXObject in JavaScript. Assuming you are doing this server-side in ASP, be sure you either set the @Language directive to "Javascript" or your IIS default language to Javascript.
Here are some resources for using Javascript with the FSO as well as the FSO itself.
JS and The FSO
FSO Basics
Good luck,