-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserEvents.aspx
94 lines (70 loc) · 4.8 KB
/
UserEvents.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
<%@ Page Title="" Language="C#" MasterPageFile="~/site2.Master" AutoEventWireup="true" CodeBehind="UserEvents.aspx.cs" Inherits="cseclubs.UserEvents" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<div style="background-image: url('Styles/images.jpg'); background-color: #00FF00;">
<div id="page-wrapper">
<div class="container-fluid" style="min-height: 80%; height: 80%;">
<div class="row">
<div >
<form id="form1" runat="server">
<div style="font-family: 'Times New Roman', Times, serif; font-size: medium; font-weight: normal; font-style: normal; font-variant: normal; color: #000000; line-height: normal;">
<div>
<p style="margin: 10px; padding: 10px"> CURRENT EVENTS </p>
</div>
<asp:GridView ID="gridView" DataKeyNames="Event_Name" runat="server"
AutoGenerateColumns="False" ShowFooter="True" HeaderStyle-Font-Bold="true"
BackColor="#CCCCCC"
BorderColor="#999999" BorderStyle="Solid" CellPadding="4"
CellSpacing="2" ForeColor="Black"
Width="966px">
<Columns>
<asp:TemplateField HeaderText="Event Name">
<ItemTemplate>
<asp:Label ID="lblc" runat="server" Text='<%#Eval("Event_Name") %>'/>
</ItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Club Name">
<ItemTemplate>
<asp:Label ID="lbla" runat="server" Text='<%#Eval("Club_Name") %>'/>
</ItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
<asp:TemplateField HeaderText="Event Date">
<ItemTemplate>
<asp:Label ID="lbls" runat="server" Text='<%#Eval("fDate") %>'/>
</ItemTemplate>
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#CCCCCC" />
<HeaderStyle Font-Bold="True" BackColor="Black" ForeColor="White"></HeaderStyle>
<PagerStyle BackColor="#CCCCCC" ForeColor="Black" HorizontalAlign="Left" />
<RowStyle BackColor="White" />
<SelectedRowStyle BackColor="#000099" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#808080" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#383838" />
</asp:GridView>
</div>
<div >
<br />
STUDENTS CAN ENROLL INTO ANY EVENT BY BELOW LINK
<div class="col-md-12">
<div class="col-md-12"
style="padding-bottom: 20px; text-align:right; top: 20px; left: 0px; height: 44px; width: 533px;"> <a class="btn btn-default btn-success" href="resitration.aspx">Registration</a> </div>
</div>
</div>
<br />
</form>
</div>
</div>
</div>
</div>
<!-- /#page-wrapper -->
</div>
</asp:Content>