-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPollingBooth.aspx
72 lines (64 loc) · 3.36 KB
/
PollingBooth.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
<%@ Page Title="" Language="C#" MasterPageFile="~/HomeMasterPage.master" AutoEventWireup="true" CodeFile="PollingBooth.aspx.cs" Inherits="PollingBooth" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div class="content">
<div class="container-fluid">
<!-- start page title -->
<div class="row">
<div class="col-12">
<div class="page-title-box">
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="javascript: void(0);">Socitey&More</a></li>
<li class="breadcrumb-item active">Polling Booth</li>
</ol>
</div>
<h4 class="page-title">Polling Booth</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-body">
<h4 class="header-title mb-3">Polling Booth</h4>
<div class="table-responsive">
<asp:Repeater ID="RepeaterSociety" runat="server">
<HeaderTemplate>
<table class="table mb-0">
<thead class="bg-info text-white">
<tr>
<th>#</th>
<th>Poll Topics</th>
<th>Poll Description</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><%# Eval("Id")%></td>
<td><%# Eval("PollTopics")%></td>
<td><%# Eval("PollDescription")%></td>
<td>
<a class="btn btn-success btn-sm" href="Vote.aspx?Id=<%#Eval("Id") %>">
Vote
</a></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
</div>
</div>
</div>
</div>
<!-- end col -->
</div>
</div>
</div>
</asp:Content>