V vsk_santosh Inactive Apprentice Mar 3, 2007 #1 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
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
B bosky101 Inactive Forerunner Mar 3, 2007 #2 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
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