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>
Order Number on receiptpage.ascx
- mfreeze
- Commodore (COMO)
- Posts: 421
- Joined: Mon Jan 24, 2005 2:07 pm
- Location: Washington, NJ
- Contact:
Order Number on receiptpage.ascx
Mary E Freeze
Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development
http://www.ffgraphics.com
Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development
http://www.ffgraphics.com
Re: Order Number on receiptpage.ascx
Change this:
Now edit the receiptpage.ascx.cs code file. Find line 55 which says:
and change it to:
to: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>
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>
Code: Select all
Caption.Text = String.Format(Caption.Text, _Order.OrderNumber);
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
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
- mfreeze
- Commodore (COMO)
- Posts: 421
- Joined: Mon Jan 24, 2005 2:07 pm
- Location: Washington, NJ
- Contact:
Re: Order Number on receiptpage.ascx
Thanks Joe. That worked flawlessly.
Mary E Freeze
Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development
http://www.ffgraphics.com
Freeze Frame Graphics
Web Hosting and Design, ASP and CFMX Development
http://www.ffgraphics.com
Re: Order Number on receiptpage.ascx
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
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