download PPCheckout.ascx
Language: NonCode
LOC: 0
Project Info
commercefinity - An open source eCommerce ...odule(commercefinity)
Server: Google
Type: svn
...runk\Commerce\PageControls\
   AddItemResult.ascx
   AddItemResult.ascx.cs
   Catalog.ascx
   Catalog.ascx.cs
   Checkout.ascx
   Checkout.ascx.cs
   MyOrders.ascx
   MyOrders.ascx.cs
   PPCheckout.ascx
   PPCheckout.ascx.cs
   Product.ascx
   Product.ascx.cs
   Receipt.ascx
   Receipt.ascx.cs
   ShoppingBasket.ascx
   ShoppingBasket.ascx.cs

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="PPCheckout.ascx.cs" Inherits="Commerce_PageControls_PPCheckout" %>
<%@ Register Src="~/Commerce/AddressEntry.ascx" TagName="AddressEntry" TagPrefix="uc1" %>

<img src="images/paypal_logo.gif" />
        <h1>Checkout with PayPal</h1>
        <asp:Wizard ID="Wizard1" runat="server" DisplaySideBar="False" OnActiveStepChanged="StepChanged" ActiveStepIndex="0">
            <WizardSteps>
                <asp:WizardStep ID="WizardStep1" runat="server" Title="Enter Shipping Info">
                   <h2>Enter Shipping Address</h2>
                   <uc1:AddressEntry ID="AddressEntry1" runat="server" />
                </asp:WizardStep>
                <asp:WizardStep ID="WizardStep2" runat="server" Title="Select Shipping">
                <h2>Select Shipping</h2>
                    <asp:RadioButtonList ID="radShipChoices" runat="server" BorderStyle="None" AutoPostBack="True" OnSelectedIndexChanged="radShipChoices_SelectedIndexChanged"></asp:RadioButtonList><br />
                </asp:WizardStep>
                <asp:WizardStep ID="WizardStep3" runat="server" Title="Finalize">
                    <h2>Confirm Your Order</h2>
                   <p>
                    You are about to be redirected to PayPal.com to purchase this order. Please note: during you the payment
                    process you can pay by either PayPal account or credit card. You do not have to be a PayPal member.</p><p>
                    Once payment is completed, please be sure to let PayPal redirect you 
                    back to this site. When PayPal redirects you, they send along your transaction 
                    information which we need in order to complete and reconcile your payment.
                    </p>
                    <center>
                       <asp:Button ID=btnContinue runat=server Text="Finish" OnClick="btnContinue_Click"/><br />
                    </center>                
        </asp:WizardStep>
            </WizardSteps>
            <FinishNavigationTemplate></FinishNavigationTemplate>
            <StepNextButtonStyle CssClass="btnInput" />
            <StartNextButtonStyle CssClass="btnInput" />
            <NavigationButtonStyle CssClass="btnInput" />
            <CancelButtonStyle CssClass="btnInput" />
            <StepPreviousButtonStyle CssClass="btnPrevious" />
        </asp:Wizard>
        <div class="sectionheader">
            <br />
            Order Summary</div>
        <br />
        <div>
            <asp:Label ID="lblSummary" runat="server"></asp:Label>
        </div>

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us