-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreceipt.aspx
More file actions
77 lines (46 loc) · 2.3 KB
/
receipt.aspx
File metadata and controls
77 lines (46 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<%@ Page Title="" Language="VB" MasterPageFile="~/MainLayout.master" AutoEventWireup="false" CodeFile="receipt.aspx.vb" Inherits="receipt" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:SqlDataSource ID="SqlDSCart2" runat="server"
DataSourceMode="DataSet"
ConnectionString="<%$ ConnectionStrings:PocketStoreConnectionString %>"
ProviderName="<%$ ConnectionStrings:PocketStoreConnectionString.ProviderName %>">
</asp:SqlDataSource>
<div class="container box " style="font-size:20px; text-align:center;">
<asp:ListView ID="lvCart" runat="server" DataSourceID="SqlDSCart2"
DataKeyField="OrderID"
RepeatColumns="1" DataKeyNames="OrderID">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="groupPlaceHolder" />
</LayoutTemplate>
<GroupTemplate>
<asp:PlaceHolder runat="server" id="itemPlaceholder"></asp:PlaceHolder>
</GroupTemplate>
<ItemTemplate>
<div class =" row" >
Thank you, <%#Eval("firstname")%>. Your order will be shipping to the following address:
</div>
<div class="row"" >
<br />
<br />
<%#Eval("address")%>, <%#Eval("city")%>, <%#Eval("state")%>, <%#Eval("zip")%>.
</div>
<br />
<br />
<br />
<div style="color:#0094ff; font-family:'Buxton Sketch'; font-size:40px;">
<div class="row">
Subtotal: <%#Eval("subtotal")%>
</div>
<div class="row">
Tax: <%#Eval("tax")%>
</div>
<div class="row">
Total: <%#Eval("total")%>
</div>
</div>
</ItemTemplate>
</asp:ListView>
</div>
</asp:Content>