I have a client side html button:
<button style="LEFT: 450px; POSITION: relative; BACKGROUND-COLOR: #8799cc" onclick="execute"
type="button" id="button2" disabled>Crossload</button>
It executes this script to run a local program on the client:
<script language="VBScript">
sub execute
set objShell=CreateObject("Wscript.Shell")
objShell.Run("PgmFile.exe")
end sub
</script>
The button is initially DISABLED and I want to programatically reset or initiate a reset of this property in asp from the web form's behindcode.
How can I accomplish this?
Thanks
Jack
<button style="LEFT: 450px; POSITION: relative; BACKGROUND-COLOR: #8799cc" onclick="execute"
type="button" id="button2" disabled>Crossload</button>
It executes this script to run a local program on the client:
<script language="VBScript">
sub execute
set objShell=CreateObject("Wscript.Shell")
objShell.Run("PgmFile.exe")
end sub
</script>
The button is initially DISABLED and I want to programatically reset or initiate a reset of this property in asp from the web form's behindcode.
How can I accomplish this?
Thanks
Jack