hello
I developed .net application.
also I got this html code
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>Pay by Visa</title>
<meta content="text/html; charset=windows-1251" http-equiv="Content-Type" />
</head>
<!--body onload='frm.submit()'-->
<body>
<form action="www.url.com/box.jsp"
method=post >
<input name="PurchaseDesc" type="hidden" value="DESC-001229" />
<input name="PurchaseAmt" type="text" value="60" />
<input name="CountryCode" type="hidden" value="268" />
<input name="CurrencyCode" type="hidden" value="840" />
<input name="MerchantName" type="hidden" value="Eservice" />
<input name="MerchantURL" type="hidden" value="http://www.test.ge/" />
<input name="MerchantCity" type="hidden" value="Tbilisi" />
<input name="MerchantID" type="hidden" value="000000008000111-00000001" />
<input name="xDDDSProxy.Language" type="hidden" value="01" />
<input type="submit" value="Finalize payment" />
</form>
</body>
</html>
when I launch in browser this html file (it is local file)
it gives following page
when i press the finalyze payment button, it redirects to the following url: "www.url.com/box.jsp
the problem it that I want to pass to the following url all those parameters which reside in html file directly from the app.
Any idea ho to do that?
thanks in advance