I am creating an .aspx page that accepts Form Posts from Authorize.Net. I did some initial testing with my ASP.NET Page and was able to accept remote form post data without any problems.
However, I recently upgraded my project to .NET v. 4.5 and now no matter what I do, I cannot get the page to accept any remote form post data.
Below is the code I was using before I upgraded to .NET v. 4.5 that was working just fine:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
string ResponseCode, ResponseReasonText, ResponseReasonCode, AVS, TransID;
string Amount, AuthCode, InvoiceNumber, strMessage;
if (Request.Form.Count > 0)
{
//foreach (var requestField in Request.Form.AllKeys)
//{
// string strResponse = string.Format(&quo ...
Go to the complete details ...