Вы находитесь на странице: 1из 15

<td>

&nbsp;</td>

<td>

<asp:GridView ID="GridView1" runat="server"


BackColor="LightGoldenrodYellow"
BorderColor="Tan" BorderWidth="1px" CellPadding="2"
ForeColor="Black"
GridLines="None">
<FooterStyle BackColor="Tan" />
<PagerStyle BackColor="PaleGoldenrod"
ForeColor="DarkSlateBlue"
HorizontalAlign="Center" />
<SelectedRowStyle BackColor="DarkSlateBlue"
ForeColor="GhostWhite" />
<HeaderStyle BackColor="Tan" Font-Bold="True" />
<AlternatingRowStyle BackColor="PaleGoldenrod" />
</asp:GridView>
</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
</table>
</asp:Content>

Selectedcandidate.apx
<%@ Page Language="C#" MasterPageFile="~/ADMINISTRATOR/Admin_master.Master"
AutoEventWireup="true" CodeBehind="Selectedcondidate.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.ADMINISTRATOR.Selectedcondidate"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<div>
<asp:GridView ID="GridView1" runat="server" Width="666px">
</asp:GridView>
</div>
</asp:Content>

Updateuser.apx
<%@ Page Language="C#" MasterPageFile="~/ADMINISTRATOR/Admin_master.Master"
AutoEventWireup="true" CodeBehind="updateuser.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.ADMINISTRATOR.updateuse"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style type="text/css">

.style4
{
width: 100%;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<table class="style4">
<tr>
<td>
<table class="style1">
<tr>
<td>
&nbsp;</td>
</tr>
</table>
</td>
</tr>
<asp:GridView ID="GridView1" runat="server"
AutoGenerateEditButton="True"
onrowcancelingedit="GridView1_RowCancelingEdit"
onrowupdating="GridView1_RowUpdating"
Width="100%"
AutoGenerateSelectButton="True"
onrowupdated="GridView1_RowUpdated"
onrowediting="GridView1_RowEditing"
onselectedindexchanged="GridView1_SelectedIndexChanged1"
AutoGenerateColumns="False">
<Columns>
<asp:TemplateField HeaderText="Name">
<EditItemTemplate>
<asp:TextBox ID="txtName"
runat="server" Text='<%#Bind("Name") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblName"
runat="server" Text='<%#Bind("Name") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="DOB">
<EditItemTemplate>
<asp:TextBox ID="txtDOB"
runat="server" Text='<%#Bind("DOB") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblDOB"
runat="server" Text='<%#Bind("DOB") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="email">
<EditItemTemplate>
<asp:TextBox ID="txtemail"
runat="server" Text='<%#Bind("email") %>'></asp:TextBox>

</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblemail"
runat="server" Text='<%#Bind("email") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Userid">
<ItemTemplate>
<asp:Label ID="lblUserid"
runat="server" Text='<%#Bind("Userid") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Pasword">
<EditItemTemplate>
<asp:TextBox ID="txtPassword"
runat="server" Text='<%#Bind("Password") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblPassword"
runat="server" Text='<%#Bind("Password") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Mobile">
<EditItemTemplate>
<asp:TextBox ID="txtMobile"
runat="server" Text='<%#Bind("Mobile") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblMobile"
runat="server" Text='<%#Bind("Mobile") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField
HeaderText="designation">
<EditItemTemplate>
<asp:TextBox ID="txtdesignation"
runat="server"
Text='<%#Bind("designation")
%>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lbldesignation"
runat="server" Text='<%#Bind("designation") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Status">
<EditItemTemplate>
<asp:TextBox ID="txtStatus"
runat="server" Text='<%#Bind("Status") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblStatus"
runat="server" Text='<%#Bind("Status") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>

</Columns>
</asp:GridView>
</table>
</asp:Content>

Viewappledjob.apx
<%@ Page Language="C#" MasterPageFile="~/ADMINISTRATOR/Admin_master.Master"
AutoEventWireup="true" CodeBehind="ViewApplyedJob.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.ADMINISTRATOR.ViewApplyedJob"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<table class="style1">
<tr>
<td>
<asp:GridView ID="GridView1" runat="server"
onselectedindexchanged="GridView1_SelectedIndexChanged" Width="100%">
</asp:GridView>
</td>
</tr>
</table>
</asp:Content>

Waiting candidate.apx
<%@ Page Language="C#" MasterPageFile="~/ADMINISTRATOR/Admin_master.Master"
AutoEventWireup="true" CodeBehind="waitingcandidate.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.ADMINISTRATOR.waitingcandidate"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<asp:GridView ID="GridView1" runat="server"
onselectedindexchanged="GridView1_SelectedIndexChanged" Width="607px">
</asp:GridView>
</asp:Content>

Apply.apx
<%@ Page Language="C#" MasterPageFile="~/JOBSEEKER/Jobseeker_master.Master"
AutoEventWireup="true" CodeBehind="Apply.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Apply" Title="Untitled
Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">

<style type="text/css">
.style2
{
height: 288px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<table class="style1">
<tr>
<td align="center" class="style2"
style="font-family: Andalus; font-size: 70px; font-weight:
bold; font-style: italic; font-variant: normal; text-transform: none; color:
#000080">
</td>
</tr>
</table>
</asp:Content>

Change_password.apx
<%@ Page Language="C#" MasterPageFile="~/JOBSEEKER/Jobseeker_master.Master"
AutoEventWireup="true" CodeBehind="Change_password.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Changr_password"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
</asp:Content>

Home.apx
<%@ Page Language="C#" MasterPageFile="~/JOBSEEKER/Jobseeker_master.Master"
AutoEventWireup="true" CodeBehind="Home.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Home" Title="Untitled
Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
<table class="style1">
<tr>
<td style="height: 80px; width: 890px; font-family: Algerian;
font-size: 40px; font-weight: bold;
font-style: italic; font-variant:
normal; text-transform: none; color: #FFFFFF;"
align="center">
WEL COME TO JOB_SEEKERS</td>
</tr>
</table>

</asp:Content>

Inbox.apx
<%@ Page Language="C#" MasterPageFile="~/JOBSEEKER/Jobseeker_master.Master"
AutoEventWireup="true" CodeBehind="Inbox.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Inbox" Title="Untitled
Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
</asp:Content>

Jobseeker_master.master
<%@ Master Language="C#" AutoEventWireup="true"
CodeBehind="Jobseeker_master.master.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Jobseeker_master" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.style1
{
width: 100%;
}
#menu1
{
margin: opx;
padding: 0px;
height: 60px;
width: 100%;
}
#menu1 ul
{
margin: opx;
padding: 0px;
height: 60px;
width: 100%;
background-color:Green;
}
#menu1 ul li
{
list-style-type:none;
float:left;
margin:0px;
padding:0px;

height:60px;
}
#menu1 ul li a
{
display:block;
text-decoration:none;
line-height:30px;
padding:15px 20px;
font-family:@BatangChe;
font-weight:bold;
color:yellow;
border-right:solid 2px yellow;
}
#menu1 ul li:hover ul
{
display :block;
}
#menu1 ul li ul
{
display :none ;
width:250px;
height:auto;
}
#menu1 ul li:hover a
{
display :block;
background-color:White;
color:Red;
}
#menu1 ul li ul li
{
width:250px;
height:60px;
background-color:Teal;
}
#menu1 ul li
{
background :green;
color:Gray;
}
.style2
{
height: 80px;
width: 300px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<table class="style1" style="width: auto; height: auto; backgroundcolor:Black">
<tr>
<td>

&nbsp;

%20(2).jpg"
145px" />

</td>
<td>
<table class="style1">
<tr>
<td>
<table class="style1">
<tr>
<td class="style2">
<img alt="" src="../Images/download
style="width: 300px; height:

</td>
<td style="height: 80px; width: 890px;
font-family: Algerian; font-size: 40px; font-weight: bold;
font-style: italic; font-variant:
normal; text-transform: none; color: #FFFFFF;"
align="center" bgcolor="#009999">
ONLINE JOB POrtal FOR<br />
JOB_SEEKERS
</td>
<td style="width: 120px; height: 80px"
align="center" bgcolor="White">
<asp:Button ID="btnlogout"
runat="server" Text="logout" BackColor="White" ForeColor="Red" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="height: 40px" id="menu1" align="center">
<ul>
<li><a href="Home.aspx">Home</a></li>
<li><a href="#">Profile</a>
<ul>
<li><a href="#">View
Profile</a></li>
<li><a href="#">Update
Profile</a></li>
</ul>
</li>
<li><a href="Apply.aspx">Apply</a></li>
<li><a href="Searchjob.aspx">Search</a></li>
<li><a href="Inbox.aspx">Inbox</a></li>
<li><a href="Change_password.aspx">Change
Password</a></li>
</ul>
</td>
</tr>
<tr>
<td style="height: 300px" align="center"
bgcolor="#FF9DCE">
<div>
<asp:ContentPlaceHolder
ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>

</div>
</td>
</tr>
<tr>
<td style="height: 50px; font-family: 'Arabic
Typesetting'; font-size: 32px; font-weight: bold;
font-style: italic; font-variant: normal; texttransform: none; color: #FFFFFF;"
align="center" bgcolor="#6600CC">
&nbsp; Designe &amp; Developed By- TeamI
</td>
</tr>
</table>
</td>
<td>
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>

Profile.apx

<%@ Master Language="C#" AutoEventWireup="true"


CodeBehind="Jobseeker_master.master.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Jobseeker_master" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.style1
{
width: 100%;
}
#menu1
{
margin: opx;
padding: 0px;
height: 60px;
width: 100%;
}
#menu1 ul
{
margin: opx;
padding: 0px;

height: 60px;
width: 100%;
background-color:Green;

}
#menu1 ul li
{
list-style-type:none;
float:left;
margin:0px;
padding:0px;
height:60px;
}
#menu1 ul li a
{
display:block;
text-decoration:none;
line-height:30px;
padding:15px 20px;
font-family:@BatangChe;
font-weight:bold;
color:yellow;
border-right:solid 2px yellow;
}
#menu1 ul li:hover ul
{
display :block;
}
#menu1 ul li ul
{
display :none ;
width:250px;
height:auto;
}
#menu1 ul li:hover a
{
display :block;
background-color:White;
color:Red;
}
#menu1 ul li ul li
{
width:250px;
height:60px;
background-color:Teal;
}
#menu1 ul li
{
background :green;
color:Gray;
}
.style2
{
height: 80px;
width: 300px;
}

</style>
</head>
<body>
<form id="form1" runat="server">
<table class="style1" style="width: auto; height: auto; backgroundcolor:Black">
<tr>

<td>
&nbsp;
</td>
<td>
<table class="style1">
<tr>
<td>
<table class="style1">
<tr>
<td class="style2">
<img alt="" src="../Images/download

%20(2).jpg"
145px" />

style="width: 300px; height:

</td>
<td style="height: 80px; width: 890px;
font-family: Algerian; font-size: 40px; font-weight: bold;
font-style: italic; font-variant:
normal; text-transform: none; color: #FFFFFF;"
align="center" bgcolor="#009999">
ONLINE JOB POrtal FOR<br />
JOB_SEEKERS
</td>
<td style="width: 120px; height: 80px"
align="center" bgcolor="White">
<asp:Button ID="btnlogout"
runat="server" Text="logout" BackColor="White" ForeColor="Red" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="height: 40px" id="menu1" align="center">
<ul>
<li><a href="Home.aspx">Home</a></li>
<li><a href="#">Profile</a>
<ul>
<li><a href="#">View
Profile</a></li>
<li><a href="#">Update
Profile</a></li>
</ul>
</li>
<li><a href="Apply.aspx">Apply</a></li>
<li><a href="Searchjob.aspx">Search</a></li>
<li><a href="Inbox.aspx">Inbox</a></li>

Password</a></li>

bgcolor="#FF9DCE">

<li><a href="Change_password.aspx">Change
</ul>
</td>
</tr>
<tr>
<td style="height: 300px" align="center"

<div>
<asp:ContentPlaceHolder
ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</td>
</tr>
<tr>
<td style="height: 50px; font-family: 'Arabic
Typesetting'; font-size: 32px; font-weight: bold;
font-style: italic; font-variant: normal; texttransform: none; color: #FFFFFF;"
align="center" bgcolor="#6600CC">
&nbsp; Designe &amp; Developed By- TeamI
</td>
</tr>
</table>
</td>
<td>
&nbsp;
</td>
</tr>
</table>
</form>
</body>
</html>

Searchjobs.apx
<%@ Page Language="C#" MasterPageFile="~/JOBSEEKER/Jobseeker_master.Master"
AutoEventWireup="true" CodeBehind="Searchjob.aspx.cs"
Inherits="Taslima_Nasrin_ONLINE_JOB_PORTAL.JOBSEEKER.Searchjob"
Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"
runat="server">
</asp:Content>

Aboutus.apx.cs
using
using
using
using
using
using
using
using
using
using
using
using

System;
System.Collections;
System.Configuration;
System.Data;
System.Linq;
System.Web;
System.Web.Security;
System.Web.UI;
System.Web.UI.WebControls;
System.Web.UI.WebControls.WebParts;
System.Web.UI.HtmlControls;
System.Xml.Linq;

namespace Taslima_Nasrin_ONLINE_JOB_PORTAL
{
public partial class About_Us : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

Adminlogin.apx.cs

using
using
using
using
using
using
using
using
using
using
using
using
using

System;
System.Collections;
System.Configuration;
System.Data;
System.Linq;
System.Web;
System.Web.Security;
System.Web.UI;
System.Web.UI.WebControls;
System.Web.UI.WebControls.WebParts;
System.Web.UI.HtmlControls;
System.Xml.Linq;
System.Data.SqlClient;

namespace Taslima_Nasrin_ONLINE_JOB_PORTAL
{
public partial class AdminLogin : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Login3_Authenticate(object sender,
AuthenticateEventArgs e)
{
Onlinejobportal ojp = new Onlinejobportal();
String ST = ojp.xyz();
SqlConnection conn = new SqlConnection(ST);
SqlDataAdapter ad = new SqlDataAdapter(" select * from Login where
Userid='" + Login3.UserName.ToString() + "' and Password='" +
Login3.Password.ToString() + "'", conn);
DataSet ds = new DataSet();
ad.Fill(ds, " Login ");
DataTable dt = ds.Tables[0];
int rowcount = dt.Rows.Count;
if (rowcount == 1)
{
Response.Redirect("ADMINISTRATOR/Home.aspx");
}
else
{
Login3.FailureText = "Wrong id and pwd";
}
}
}
}

Agencies.apx.cs

using
using
using
using
using
using
using
using
using
using
using
using

System;
System.Collections;
System.Configuration;
System.Data;
System.Linq;
System.Web;
System.Web.Security;
System.Web.UI;
System.Web.UI.WebControls;
System.Web.UI.WebControls.WebParts;
System.Web.UI.HtmlControls;
System.Xml.Linq;

namespace Taslima_Nasrin_ONLINE_JOB_PORTAL
{
public partial class Agencies : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}

Candidatelogin.apx.cs
using
using
using
using
using
using
using
using
using
using
using
using
using

System;
System.Collections;
System.Configuration;
System.Data;
System.Linq;
System.Web;
System.Web.Security;
System.Web.UI;
System.Web.UI.WebControls;
System.Web.UI.WebControls.WebParts;
System.Web.UI.HtmlControls;
System.Xml.Linq;
System.Data.SqlClient;

namespace Taslima_Nasrin_ONLINE_JOB_PORTAL
{
public partial class Candidatelogin : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string jobid = Session["jobid"].ToString();
find_job_details(jobid);
}
}
private void find_job_details(string jobid)
{
Onlinejobportal ojp = new Onlinejobportal();
string st = ojp.xyz();
SqlConnection conn = new SqlConnection(st);
SqlDataAdapter ad = new SqlDataAdapter("select * From jobdeatails
where jobid='" + jobid + "'", conn);
DataSet ds = new DataSet();
ad.Fill(ds, " jobdeatails");
DataTable dt = ds.Tables[0];
GridView1.DataSource = ds;
GridView1.DataBind();
}
protected void Login1_Authenticate(object sender,
AuthenticateEventArgs e)
{
Onlinejobportal ojp = new Onlinejobportal();
String ST = ojp.xyz();
SqlConnection conn = new SqlConnection(ST);

Вам также может понравиться