cancel
Showing results for 
Search instead for 
Did you mean: 

can someone explain the basics?

so i understand that there is a sandbox but how do i actually implement into the website , like id hate to ask like this but i cant seem to find instructions to this or a wiki etc etc. 

bluedaisy
Member
6 REPLIES 6

There are videos

http://www.authorize.net/videos/

 

and this how credit card processing works

http://www.authorize.net/resources/howitworksdiagram/

RaynorC1emen7
Expert

ok so i read the diagram , and i watched the videos that applied to me but they dont say anything about how to apply the api to a website . or am i looking at this all wrong  and the samples are just a guide for how my code should look?

Hello @bluedaisy

 

May I suggest starting with Payment Transactions in our API Feature documentation.  It provides an overview of transactions from a developer perspective along with links to relevant developer training videos.

 

Richard

this helps alot thanks

Same, I am using ASP.NET forms, and the Hello World tutorial only covers MVC. Plus every time I fix an error, a new error appears. I need a clear tutorial for a beginner to code the basic functionality. 

rockon77
Contributor

Okay I got this code to work (Hello World code didn't work):

 

http://developer.authorize.net/api/reference/index.html#payment-transactions 

 

And I added this code to my asp.net page:

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace net.authorize.sample
{

public partial class payments_test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ChargeCreditCard.Run("xx", "xx");
}

}
}

rockon77
Contributor