The Accept.js has an inline form for entering Credit card data.
On that web page, I have several hidden fields. Example city='Dallas"
After entering credit card data, Authorize.net sends the response to
my Csharp web page.
In the C# Page_Load, I can do
string strCity = Request.Form["city"];
I get a value for strCity. That is good.
I call CreateAnAcceptPaymentTransaction
Inside that procedure,I cannot get values. I would like something like:
string strCity = Request.Form["city"]; var billingAddress = new customerAddressType { firstName = "John", lastName = "Doe", address = "123 My St", city = strCity, zip = "98004" };
I am new to this Authorize.net
How can I get the values from the "form" and put in these fields ?
TIA
Steve2301
07-02-2020 06:26 AM
SOLVED
city = HttpContext.Current.Request["city"]
07-04-2020 03:19 AM
07-04-2020 03:09 PM
08-20-2020 04:58 AM
Thanks For This Infromation. It''s Help us to fix the problem. Once Again thanks.
Regards
Mencobadunia
Please also visit our site. To get more information
11-07-2020 06:43 PM