-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyAccount.aspx
78 lines (75 loc) · 4.64 KB
/
MyAccount.aspx
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 Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="MyAccount.aspx.vb" Inherits="MyAccount" title="Better Neighbors - My Account for Getting and Giving Free Stuff" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div style="z-index: 101; left: 3px; width: 223px; position: absolute; top: 115px;
height: 27px; text-align: left;">
<asp:MultiView ID="MultiView1" runat="server">
<asp:View ID="View1" runat="server">
<asp:Label ID="Label1" runat="server" Text="UserName:" Font-Bold="True"></asp:Label>
<asp:Label ID="Label2" runat="server"></asp:Label><br />
<br />
<strong>My States:</strong>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4"
DataSourceID="SqlDataSource1" ForeColor="#333333" GridLines="None" Width="441px">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" ReadOnly="True"
SortExpression="ID" />
<asp:BoundField DataField="State" HeaderText="State" SortExpression="State" />
</Columns>
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
<br />
<strong>My Feedback:<br />
<asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" CellPadding="4"
DataSourceID="SqlDataSource2" ForeColor="#333333" GridLines="None" Width="443px">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" ReadOnly="True"
SortExpression="ID" />
<asp:BoundField DataField="Feedback" HeaderText="Feedback" SortExpression="Feedback" />
<asp:BoundField DataField="PosNeg" HeaderText="Type" SortExpression="PosNeg" />
<asp:BoundField DataField="Item" HeaderText="Item" SortExpression="Item" />
<asp:BoundField DataField="LeftBy" HeaderText="Left By" SortExpression="LeftBy" />
</Columns>
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView></strong></asp:View></asp:MultiView><br />
<br />
<br />
<br />
<br />
</div>
<div style="z-index: 102; left: 552px; width: 100px; position: absolute; top: 43px;
height: 100px">
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT * FROM [States] S RIGHT JOIN UserMemberships UM ON S.ID=UM.MembershipID" InsertCommand="UpdateMemberships" InsertCommandType="StoredProcedure">
<InsertParameters>
<asp:Parameter Name="varUserName" Type="string" />
<asp:Parameter Name="varMembershipID" Type="int16" />
<asp:Parameter Name="varActiveMember" Type="int16" />
</InsertParameters>
</asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT * FROM [UserFeedback] WHERE ([UserName] = @UserName)">
<SelectParameters>
<asp:ProfileParameter Name="UserName" PropertyName="UserName" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
</div>
<div style="z-index: 103; left: 8px; width: 442px; position: absolute; top: 45px;
height: 36px">
<span style="font-family: Verdana"> In this section you can view and edit your user details. This
section includes your favorite states, as well as your feedback. </span>
</div>
</asp:Content>