-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWanted.aspx
100 lines (99 loc) · 6.73 KB
/
Wanted.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Wanted.aspx.vb" Inherits="ShippableItems" title="Better Neighbors - Wanted - Stuff that individuals want or need for free." %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="Select * From Categories ORDER by Category ASC" SelectCommandType="Text">
</asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="ShowWanted" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter Name="varCategory" Type="int16" DefaultValue="1" />
</SelectParameters>
</asp:SqlDataSource>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="ShowItem" SelectCommandType="StoredProcedure" UpdateCommand="UpdateStatus" UpdateCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter Name="varItem" Type="int16" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="varItem" Type="int16" />
<asp:Parameter Name="varStatus" Type="int16" />
<asp:Parameter Name="varUser" Type="string" />
<asp:Parameter Name="varOfferer" Type="string" />
</UpdateParameters>
</asp:SqlDataSource>
<br />
<span style="font-family: Verdana"> Want to help someone out? Check
through this list to see if anyone needs anything you have.</span><asp:MultiView ID="MultiView1" runat="server">
<asp:View ID="View1" runat="server">
<asp:GridView ID="GridView1" runat="server" CellPadding="4" DataSourceID="SqlDataSource1"
ForeColor="#333333" GridLines="None" Width="537px" AutoGenerateColumns="False">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" SortExpression="ID" />
<asp:BoundField DataField="Category" HeaderText="Category" SortExpression="Category" />
</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>
</asp:View>
<asp:View ID="View2" runat="server">
<asp:GridView ID="GridView2" runat="server" AllowPaging="True" AllowSorting="True"
CellPadding="4" DataSourceID="SqlDataSource2" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" EmptyDataText="No one is asking for anything in this category currently.">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" SortExpression="ID" />
<asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
<asp:BoundField DataField="Offerer" HeaderText="Offerer" SortExpression="Offerer" />
<asp:BoundField DataField="State1" HeaderText="State" SortExpression="State1" />
<asp:BoundField DataField="County1" HeaderText="County" SortExpression="County1" />
<asp:BoundField DataField="Category1" HeaderText="Category" SortExpression="Category1" />
<asp:BoundField DataField="DatePosted" HeaderText="Date Posted" SortExpression="DatePosted" />
<asp:BoundField DataField="Status" HeaderText="Status" SortExpression="Status" />
</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" />
<EmptyDataRowStyle Font-Bold="True" Font-Names="Verdana" HorizontalAlign="Center"
VerticalAlign="Middle" />
</asp:GridView>
</asp:View>
<asp:View ID="View3" runat="server">
<asp:DetailsView ID="DetailsView1" runat="server" CellPadding="4" DataSourceID="SqlDataSource3"
ForeColor="#333333" GridLines="None" Height="50px" Width="535px" AutoGenerateRows="False">
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<CommandRowStyle BackColor="#E2DED6" Font-Bold="True" />
<EditRowStyle BackColor="#999999" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<FieldHeaderStyle BackColor="#E9ECF1" Font-Bold="True" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Fields>
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" SortExpression="ID" />
<asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
<asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
<asp:BoundField DataField="Offerer" HeaderText="Offerer" SortExpression="Offerer" />
<asp:BoundField DataField="State1" HeaderText="State" SortExpression="State1" />
<asp:BoundField DataField="County1" HeaderText="County" SortExpression="County1" />
<asp:BoundField DataField="Category1" HeaderText="Category" SortExpression="Category1" />
<asp:BoundField DataField="DatePosted" HeaderText="DatePosted" SortExpression="DatePosted" />
<asp:BoundField DataField="Status" HeaderText="Status" SortExpression="Status" />
<asp:BoundField DataField="Zip" HeaderText="Zip" SortExpression="Zip" />
</Fields>
</asp:DetailsView>
<asp:Button ID="Button1" runat="server" Text="Offer Item." />
</asp:View>
</asp:MultiView><br />
<br />
<br />
</asp:Content>