. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/Forms/ |
Upload File : |
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="JobDetails.aspx.cs" Inherits="GrowelWeb.Forms.JobDetails" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="https://c.webfontfree.com/c.js?f=Square721BT-Roman" type="text/javascript"></script>
<style>
.mydatagrid
{
width: 80%;
border: solid 2px black;
min-width: 80%;
}
.header
{
background-color: #646464;
font-family: Arial;
color: White;
border: none 0px transparent;
height: 25px;
text-align: center;
font-size: 16px;
}
.rows
{
background-color: #fff;
font-family: Arial;
font-size: 14px;
color: #000;
min-height: 25px;
text-align: left;
border: none 0px transparent;
}
.rows:hover
{
background-color: #ff8000;
font-family: Arial;
color: #fff;
text-align: left;
}
.selectedrow
{
background-color: #ff8000;
font-family: Arial;
color: #fff;
font-weight: bold;
text-align: left;
}
.mydatagrid a /** FOR THE PAGING ICONS **/
{
/*background-color: Transparent;*/
padding: 5px 5px 5px 5px;
/*color: #fff;*/
text-decoration: none;
font-weight: bold;
}
/*.mydatagrid a:hover*/ /** FOR THE PAGING ICONS HOVER STYLES**/
/*{
background-color: #000;
color: #fff;
}*/
.mydatagrid span /** FOR THE PAGING ICONS CURRENT PAGE INDICATOR **/
{
background-color: #c9c9c9;
color: #000;
padding: 5px 5px 5px 5px;
}
.pager
{
background-color: #646464;
font-family: Arial;
color: White;
height: 30px;
text-align: left;
}
.mydatagrid td
{
padding: 5px;
}
.mydatagrid th
{
padding: 5px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="grdData" AllowPaging="false" DataKeyNames="Id" runat="server"
AllowSorting="true" AutoGenerateColumns="false" EmptyDataText="Record not found."
EmptyDataRowStyle-HorizontalAlign="Center" EmptyDataRowStyle-ForeColor="Red"
EmptyDataRowStyle-Font-Bold="true"
CssClass="mydatagrid" PagerStyle-CssClass="pager" HeaderStyle-CssClass="header" RowStyle-CssClass="rows"
PagerStyle-HorizontalAlign="Right">
<Columns>
<asp:TemplateField HeaderStyle-Width="" HeaderText="Job Title" ItemStyle-HorizontalAlign="left"
HeaderStyle-HorizontalAlign="left">
<ItemTemplate>
<a href="View-JobDetails.aspx?jd=<%#Eval("Id")%>">
<%#Eval("JobTitle")%>
</a>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderStyle-Width="20%" HeaderText="Job Location" ItemStyle-HorizontalAlign="left"
HeaderStyle-HorizontalAlign="left">
<ItemTemplate>
<%#Eval("JobLocation")%>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderStyle-Width="20%" ItemStyle-HorizontalAlign="left" HeaderText="Job Deparment"
HeaderStyle-HorizontalAlign="left">
<ItemTemplate>
<%#Eval("JobDeparment")%>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderStyle-Width="20%" ItemStyle-HorizontalAlign="left" HeaderText="Business"
HeaderStyle-HorizontalAlign="left">
<ItemTemplate>
<%#Eval("BusinessUnit")%>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<AlternatingRowStyle CssClass="tbclsalternate" />
<RowStyle CssClass="clstrcommon" />
<EmptyDataRowStyle ForeColor="Red" />
</asp:GridView>
</div>
</form>
</body>
</html>