vbscript

hi ,i need to submit form details which i created using MS infopath to a file on hard disk and refresh the form can any one send me the code to be written in MS script editor ,for the above task.
thank you
 
im assuming that you are using asp for server side programming ,if not replace .asp appropriately in the line below.

PHP:
<form action= '/path/to/file/on/harddisk.asp' method=post >

<input ...

<input ...

<input type='submit' value='submit' />

</form>

then on file-on-hard-disk.asp ,you can redirect the page to the same one. Read how to do this from - Browser Redirection using VBScript
 
Back
Top