Order Number on receiptpage.ascx

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
User avatar
mfreeze
Commodore (COMO)
Commodore (COMO)
Posts: 421
Joined: Mon Jan 24, 2005 2:07 pm
Location: Washington, NJ
Contact:

Order Number on receiptpage.ascx

Post by mfreeze » Thu Aug 27, 2009 8:25 am

I have the following 3 lines at the top of receiptpage.aspx replacing the View Order # text. Can somebody tell me how I replace the 'xx' in the third line with the order #? I have tried several things with no success.

<asp:Panel ID="PageHeaderPanel" runat="server" CssClass="receiptpageHeader">
<h1><asp:Localize ID="Caption" runat="server" Text="Thank you for your order."></asp:Localize></h1>
<h4><asp:Localize ID="Caption1" runat="server" Text="Please print this page for your records."></asp:Localize></h4>
<h4><asp:Localize ID="Caption2" runat="server" Text="Your order number is xx and it will ship pending credit card approval. ."></asp:Localize></h4>
</asp:Panel>
Mary E Freeze

Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development

http://www.ffgraphics.com

User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

Re: Order Number on receiptpage.ascx

Post by AbleMods » Thu Aug 27, 2009 12:57 pm

Change this:
mfreeze wrote:<h4><asp:Localize ID="Caption2" runat="server" Text="Your order number is xx and it will ship pending credit card approval. ."></asp:Localize></h4>
to:

Code: Select all

<h4><asp:Localize ID="Caption2" runat="server" Text="Your order number is [color=#FF0000]{0} [/color]and it will ship pending credit card approval. ."></asp:Localize></h4>
Now edit the receiptpage.ascx.cs code file. Find line 55 which says:

Code: Select all

Caption.Text = String.Format(Caption.Text, _Order.OrderNumber);
and change it to:

Code: Select all

Caption2.Text = String.Format(Caption2.Text, _Order.OrderNumber);
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

User avatar
mfreeze
Commodore (COMO)
Commodore (COMO)
Posts: 421
Joined: Mon Jan 24, 2005 2:07 pm
Location: Washington, NJ
Contact:

Re: Order Number on receiptpage.ascx

Post by mfreeze » Thu Aug 27, 2009 5:53 pm

Thanks Joe. That worked flawlessly.
Mary E Freeze

Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development

http://www.ffgraphics.com

User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

Re: Order Number on receiptpage.ascx

Post by AbleMods » Thu Aug 27, 2009 9:15 pm

Glad to help - I wish ALL my code worked that well ;)
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

Post Reply