Hello all, I have written some code to integrate our asp.net website to integrate with authorize.net, I have been using sim method for it. but while I am trying to get relay response from it x_response_code getting nothing into the query string. Is there anyone can help me ?
Many thanks.
This is my code, I am using for integration
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="T.aspx.vb" Inherits="T" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" action="https://test.authorize.net/gateway/transact.dll" method="post">
<div>
<input type="hidden" name="x_version" value="3.1" />
<input type="hidden" name="x_login" value="<%= x_login%>" />
<input type="hidden" name="x_show_form" value="PAYMENT_FORM" />
<input type="hidden" name="x_type" value="AUTH_ONLY" />
<input type="hidden" name="x_method" value="CC" />
<%--<input type="hidden" name="x_currency_code" value="GBP" />--%>
<input type="hidden" name="x_amount" value="1.1" />
<input type="hidden" name="x_fp_timestamp" value="<%= x_fp_timestamp %>" />
<input type="hidden" name="x_fp_sequence" value="<%=x_fp_sequence %>" />
<input type="hidden" name="x_fp_hash" value="<%=x_fp_hash %>" />
<input type="hidden" name="x_relay_response" value="true" />
<input type="hidden" name="x_relay_url" value="https://www.guestmaster.com/CCToken/LastPage.aspx" />
<input type="submit" name="btnsubmit" value="click here to payment" />
</div>
</form>
</body>
</html>
01-10-2017 02:25 AM
Hi neilnewport,
Can you please provide us more details on this. Is the relay response rendering after the payment form? What exactly are your customers seeing, are they getting any error?
Thanks,
Joy
01-12-2017 03:04 PM - edited 01-12-2017 03:04 PM