• Home |
  • Merchants |
  • Support |
  • Search |
  • About |
  • Login |
  • Overview |
  • Getting Started |
  • My Account |
  • Products
    1. Product Definition |
    2. Product Pricing |
    3. Product Delivery |
    4. Cross-Sells |
    5. Bundle Products |
    6. Coupon Codes |
    7. Product Groups |
    |
  • Checkouts
    1. Checkout Designer |
    2. Checkout Content |
    3. Checkout Links |
    4. A/B Testing |
    5. Dynamic Pricing API |
    6. Checkout Parameters |
    |
  • Tracking
    1. Conversions Tracking |
    2. Visitors Tracking |
    3. Pixel URL Tracking |
    4. Tracking Campaigns |
    5. Transactions Tracking |
    6. Custom Parameters |
    |
  • Reporting
    1. Notifications and Alerts |
    2. Dashboard |
    3. Performance Reports |
    4. Custom Reports |
    |
  • Affiliate Marketing |
  • Payments and Reserves |
  • FAQ |
  • Glossary
    1. Terms |
    2. Country List |
    3. Currency List |
    |
  • Contact us |
  • Other Tools
    1. Join Extensions Designer |
    2. API |
    |

Sample Post C#

  public string GlobalOrderID = string.Empty;

  public string ProductID = string.Empty;

  protected void Page_Load(object sender, EventArgs e)

  {

     NameValueCollection nvColl = new NameValueCollection(Request.Form);

     string errorMessage = string.Empty;

     bool isPosted = false;

     try

     {

       if (nvColl.Count == 0)

       {

         errorMessage = "POST IS NULL.";

       }

       else

      {

        GlobalOrderID = nvColl["GlobalOrderID"];

        ProductID = nvColl["ProductID"];

        isPosted = true;

      }

    }

     catch (Exception ex)

     {

        errorMessage = ex.Message;

     }

     Response.Clear();

     if (isPosted)

     {

      // Store your information here....... and than reply

      Response.Write("SUCCESS");

     }

     else

     {

       Response.Write("FAILED");

       Response.Write(errorMessage);

     }

 }

Sample Post PHP

$GlobalOrderID = "";

$ProductID = "";

$errorMessage = "";

$isPosted = false;


try{

  if(empty($_POST)) {

    $errorMessage = "POST IS NULL";

  }else{

     $GlobalOrderID = $_POST["GlobalOrderID"];

     $ProductID = $_POST["ProductID"];

     $isPosted = true;

  }

}

catch(Exception $e){

  $errorMessage = $e->getMessage();

}


if($isPosted){

   // Store your information here....... and than reply

   echo("SUCCESS");

}else{

  echo("FAILED");

  echo($errorMessage);

}

2025 @ UpClick, Inc. All rights Reserved.