I am trying to use ASP to complete an IPN transaction.
I am using the following code:
<form name="NotifyValidate">
<%for each thing in request.form%>
<input type="hidden" name="<%=thing%>" value="<%=request.form(thing)%>">
<%next%>
<input type="hidden" name="cmd" value="_notify-validate">
</form>
<script language="JavaScript">
<!--
f = document.forms.NotifyValidate;
f.action = "https://www.paypal.com/cgi-bin/webscr";
f.method = "post";
f.submit();
-->
</script>
When I submit this form,
'VERIFIED' is displayed in the window on
https://www.paypal.com/cgi-bin/webscr. How can I read information from the
body of this webpage? Do I have to use a cgi script? Is there any other
way? Thank you very much. Any help is greatly appreciated. Sincerely,
Ferdouse'