I have a VB DLL which I written that will sit on a server running in COM plus and will be called by a VB client application, which is fine, but also this DLL has to called by a COBOL program (which I know very little about) using binary data requests.
Due to this it has been decided that the cobal application will make a call to a asp page sitting on the server which using request.querystring will extract the request.
I can't seem to find a way of using the post method to call another asp that does all the calls to the DLL etc, without using a submit button which I don't want, because there won't be any user intervention so far I have this:
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</head>
<form name="FrmPost" method="post" action="Postresults2.asp">
<P><INPUT TYPE="Submit" NAME="submit" VALUE=<%=Request.QueryString%>></p>
</form>
</body>
</html>
How can I just post to the next page without the button.
My second asp page uses Request.BinaryRead, maybe I can put it all into one asp, I'm not sure.
Thanks for any advice
Due to this it has been decided that the cobal application will make a call to a asp page sitting on the server which using request.querystring will extract the request.
I can't seem to find a way of using the post method to call another asp that does all the calls to the DLL etc, without using a submit button which I don't want, because there won't be any user intervention so far I have this:
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</head>
<form name="FrmPost" method="post" action="Postresults2.asp">
<P><INPUT TYPE="Submit" NAME="submit" VALUE=<%=Request.QueryString%>></p>
</form>
</body>
</html>
How can I just post to the next page without the button.
My second asp page uses Request.BinaryRead, maybe I can put it all into one asp, I'm not sure.
Thanks for any advice