How To: Credit Card and ACH (e-check) integration with ASP.NET / C#
This is the seventh part in a series of postings on how to integrate credit card and ACH/E-check transactions into various systems. This installment demonstrates code used for processing payments (credit card and/or ACH) within a .NET / C# application. This was taken from the NELiX TransaX FleXport toolkit documentation. Credit card integration examples can be downloaded on the NELiX TransaX FleXport page. Assumptions: - Using NELiX TransaX Payment Gateway - Communicating using NELiX TransaX Webservice using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void ContinueButton_Click(object sender, ImageClickEventArgs e) { RoXAPI_WebService.RoXA...