Post your form to a hidden frame:
Your page:
<html>
<frameset cols="80%,20%">
<frame id="content" name="content" src="software.asp">
<frame id="frmcode" name="frmcode" src="tcode.asp">
</frameset>
</html>
software.asp:
this page contains the form like so:
<form id="frmHidden" name="frmHidden" target="frmcode" action="tcode.asp">
tcode.asp:
This should set the innerHTML of a label or div on the software page if you want the user to know there is a reaction from the server.
If you want to use this for a voting cheeter:
in software.asp
function fncDoALot() {
document.getElementById('frmHidden').submit();
setTimeout('fncDoALot();',500)
}
setTimeout('fncDoALot();',500)
But a smart page checks your IP address or other headers.