-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplications.aspx
More file actions
33 lines (29 loc) · 1.63 KB
/
applications.aspx
File metadata and controls
33 lines (29 loc) · 1.63 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
<%@ Page Title="" Language="C#" MasterPageFile="~/General.master" AutoEventWireup="true" CodeFile="applications.aspx.cs" Inherits="applications" %>
<asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">Applications for <asp:Literal ID="litComp" runat="server" /> - JobFinder</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ExtraHead" Runat="Server">
<link rel="stylesheet" href="css/applications.css" />
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="BodyHolder" Runat="Server">
<article id="applicationsCont">
<section id="results">
<asp:Repeater ID="applicationRepeater" runat="server">
<ItemTemplate>
<article class="application">
<a href='application.aspx?id=<%# DataBinder.Eval(Container.DataItem, "ID") %>' class="resultLink clearfix">
<h3><%# DataBinder.Eval(Container.DataItem, "JobTitle") %></h3>
<section class="applUser clearfix">
<figure>
<img src='files/users/imgs/<%# DataBinder.Eval(Container.DataItem, "UserImage") %>' alt="profile pic" />
</figure>
<p class="fullName"><%# DataBinder.Eval(Container.DataItem, "UserName") %></p>
</section>
</a>
</article>
</ItemTemplate>
</asp:Repeater>
<section id="pagination">
<asp:PlaceHolder ID="Pages" runat="server" />
</section>
</section>
</article>
</asp:Content>