Click here to Skip to main content
15,895,777 members
Articles / Web Development / ASP.NET

Use of the PayPal payment system in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (164 votes)
2 Jun 2008CPOL22 min read 847K   19.3K   578  
This article covers aspects of using the PayPal payment system in ASP.NET
<!----------------------------------------------------------------------------
'
'  File:           PayPal.aspx
'
'  Facility:       The unit contains a payment form to be sent to PayPal.
'
'  Abstract:       It is used to generate a payment form and to send it to PayPal.
'
'  Environment:    VC 8.0
'
'  Author:         KB_Soft Group Ltd.
'
----------------------------------------------------------------------------->

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="PayPal.aspx.vb" Inherits="PayPal" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="payForm" method="post" action="<%Response.Write (URL)%>">
        <input type="hidden" name="cmd" value="<%Response.Write (cmd)%>">
        <input type="hidden" name="business" value="<%Response.Write (business)%>">
        <input type="hidden" name="item_name" value="<%Response.Write (item_name)%>">
        <input type="hidden" name="amount" value="<%Response.Write (amount)%>">
        <input type="hidden" name="no_shipping" value="<%Response.Write (no_shipping)%>">
        <input type="hidden" name="return" value="<%Response.Write (return_url)%>">
        <input type="hidden" name="rm" value="<%Response.Write (rm)%>">
        <input type="hidden" name="notify_url" value="<%Response.Write (notify_url)%>">
        <input type="hidden" name="cancel_return" value="<%Response.Write (cancel_url)%>">
        <input type="hidden" name="currency_code" value="<%Response.Write (currency_code)%>">
        <input type="hidden" name="custom" value="<%Response.Write (request_id)%>">
    </form>

    <script language="javascript">
    document.forms["payForm"].submit ();
    </script>

</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Russian Federation Russian Federation
Alexandr Golovanov is a .NET developer at KB_Soft Group, an offshore software development company located in Russia, Novosibirsk. Here he has worked
on various .NET projects.

Comments and Discussions