Help - Search - Members - Calendar
Full Version: anyone can tell me what wrong with this script.
Get Paid Forum - Get Paid Discussion > Webmaster's Corner > Advertising Section related to Running a website > Script Exchange > For Sale Archive
satachai
<html>
<b>PAYEE_ACCOUNT </b> <%Request.Form("PAYEE_ACCOUNT")%> <br>
<b>PAYMENT_AMOUNT </b> <%Request.Form("PAYMENT_AMOUNT")%> <br>
<b>PAYMENT_UNITS </b> <%Request.Form("PAYMENT_UNITS")%> <br>
<b>PAYMENT_METAL_ID </b> <%Request.Form("PAYMENT_METAL_ID")%> <br>
<b>PAYMENT_BATCH_NUM </b> <%Request.Form("PAYMENT_BATCH_NUM")%> <br>
<b>PAYER_ACCOUNT </b> <%Request.Form("PAYER_ACCOUNT")%> <br>
</html>

I use this to receive data from e-gold finish spend. Can you tell me what wrong with this script? If you can write new asp script to receive data from e-gold finish spend, I very thank you. thank you.. please help..
aurora
you need to add either a "=" sign or the word "Response.write" in front of each requested variable

if you did not add it, you will receive errors

this is what it should looks like:

<html>
<b>PAYEE_ACCOUNT </b> <%=Request.Form("PAYEE_ACCOUNT")%> <br>
<b>PAYMENT_AMOUNT </b> <%=Request.Form("PAYMENT_AMOUNT")%> <br>
<b>PAYMENT_UNITS </b> <%=Request.Form("PAYMENT_UNITS")%> <br>
<b>PAYMENT_METAL_ID </b> <%=Request.Form("PAYMENT_METAL_ID")%> <br>
<b>PAYMENT_BATCH_NUM </b> <%=Request.Form("PAYMENT_BATCH_NUM")%> <br>
<b>PAYER_ACCOUNT </b> <%=Request.Form("PAYER_ACCOUNT")%> <br>
</html>

hope it helps ab.gif
satachai
QUOTE (aurora @ May 16 2003, 01:15 AM)
you need to add either a "=" sign or the word "Response.write" in front of each requested variable

if you did not add it, you will receive errors

this is what it should looks like:

<html>
<b>PAYEE_ACCOUNT </b> <%=Request.Form("PAYEE_ACCOUNT")%> <br>
<b>PAYMENT_AMOUNT </b> <%=Request.Form("PAYMENT_AMOUNT")%> <br>
<b>PAYMENT_UNITS </b> <%=Request.Form("PAYMENT_UNITS")%> <br>
<b>PAYMENT_METAL_ID </b> <%=Request.Form("PAYMENT_METAL_ID")%> <br>
<b>PAYMENT_BATCH_NUM </b> <%=Request.Form("PAYMENT_BATCH_NUM")%> <br>
<b>PAYER_ACCOUNT </b> <%=Request.Form("PAYER_ACCOUNT")%> <br>
</html>

hope it helps ab.gif

Thank you very much.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.