Help - Calling a batch file
-
Hi guys, This is driving me insane and Im sure its quite simple but are there any docx, links, samples etc... on how to call a batch file from a web page (be it in html, js, asp or whatever). I did a google search but half the links to this sort of query are broken, have been removed or dont exist anymore. Anyone have any ideas? Thanks!
-
Hi guys, This is driving me insane and Im sure its quite simple but are there any docx, links, samples etc... on how to call a batch file from a web page (be it in html, js, asp or whatever). I did a google search but half the links to this sort of query are broken, have been removed or dont exist anymore. Anyone have any ideas? Thanks!
Its due when wrote: how to call a batch file from a web page You mean like a DOS .bat file? Use the System.Diagnostics.Process.Start(fileName,arguments)[^] method.
Do you want to know more? WDevs.com - Member's Software Directories, Blogs, FTP, Mail and Forums
-
Its due when wrote: how to call a batch file from a web page You mean like a DOS .bat file? Use the System.Diagnostics.Process.Start(fileName,arguments)[^] method.
Do you want to know more? WDevs.com - Member's Software Directories, Blogs, FTP, Mail and Forums
Colin Angus Mackay wrote: You mean like a DOS .bat file? Exactly, That link was perfect. Much appreciated Colin!