Forum

The forum is a free service supported by community members. Please consider opening a support ticket if you need timely help.

PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 26 Mar 2011 03:56 PM by  Mike Asher
Capture multiple email addresses during checkout
 2 Replies
Sort:
You are not authorized to post a reply.
Author Messages


New Member


Posts:
New Member


--
26 Mar 2011 03:03 PM
    I need to be able to collect several email addresses during checkout. I'm thinking a "additional notes" type of textbox (multi-line).

    Is there example code for something like this?

    Thanks,
    Mike
    0


    Veteran Member


    Posts:2957
    Veteran Member


    --
    26 Mar 2011 03:22 PM
    You can just add the multiline textbox to the Dynamic Form Code under Configuration > Settings in the Checkout section.

    <table cellpadding="3" cellspacing="0" style="width: 100%">
    <tr>
    <td style="width: 80px" width="100">
    Emails:</td>
    <td>
    <asp:TextBox ID="CustomEmailTextBox" runat="server" Rows="3" TextMode="MultiLine" Width="200px" Wrap="False" />
    </td>
    </tr>
    </table>
    0


    New Member


    Posts:
    New Member


    --
    26 Mar 2011 03:56 PM
    Thank you!
    0
    You are not authorized to post a reply.