: Is is possible to execute a DOS BAT file from JavaScript or DHTML?
:
: thanks! Jeff
:
Try this
Create two frames Size( * , 0 ) and call the Application ( or bat file ) in the second Frame ( it will appear a message, but you can`t see it, and the Application runs !! )
<frameset cols="*,0" framespacing="0" border="0" frameborder="0">
<frame name="Body" scrolling="auto" noresize src="SelectInc/MainBody.asp">
<frame name="Footer" scrolling="no" noresize src="SelectInc/Footer.asp">
</frameset>
<script type='text/javascript'>window.open('../Path/File.exe','Footer');</script>