They all return an empty value (same with request.form and request.querystring)
I just call the client program (a credit card processor and run simple scripts to return the values
and PHP works.. not asp.
Now is ther a way to bring all the posted data in asp and parse it?
Or some other solution I tried to get the data with PHP and redirect it to the asp script (with GET) and it works fine when ran as standalone but in the client environment the values are lost
Thx
IPS know php $_POST and asp request are supposed to be fully equivalente but equivalent but it just doesn't work.
There is where I cant request the variables with asp. With php (checkout.php) the variables are retrieved fine with $_POST
No idea who calls the asp or the php.
I have no control over the script that calls checkout.asp
Actually checkout with regular request would be ok with:
<%
reference_sale = request("reference_sale")
reference_pol= request("reference_pol")
value=request("value")
%>
TYhe question is the php script receives the data from the unknown form... asp does not. Thats what I was wondering if I could call the complete post data and parse it.
ASP
Open in new window
Code to call itOpen in new window
Working sample here