Friday, March 23, 2018

Online job portal project In Asp.Net.

Online job portal project  in asp.net with source code


          This  is online job portal project. this project have three side admin,user and company side  that  allows  job seeker  to do  registration and login and also provides facility to manage profile and apply for job same as all facility are provides to the job requiters company to add manage vacancy and their profiles and admin have all the facilities like add company,add user all the management is done by the admin .

The Following are the functionalities of this project:


Employee :-



User Login:

           
From here any valid user can enter into the site. Here user has to give User Name and Password which are provided at the registration time. These will compared with the database, if match entry found then user can enter into the site. If the entry will not matched then user get the error message and will have to re-enter the User Name and Password again.

 Apply Job:


User can view all the information about all job and description and apply for the job.  


 View Advertisement:


User can view job’s available advertisements and related news about job.

 Feedback: 


The Feedback page gives the facility for the users to provide their review or give any suggestions.

Contact us:


From this page we give facility to user for contact us.

Company :-



In this phase registered company can login with password and username after login  done company owner can manage their profile, manage vacancy etc.


 Login:


This page allows registered  company owner to manage related information .


 Add Vacancy:


This page allows company owner to add required vacancy for company.

 Manage Vacancy :


This page allows company owner to manage vacancy details like edit or delete .

 Manage Apply Job :


This page allows company owner to Manage all applied jobs information.


Feedback:


This page allows company owner to give feed  to the administrator.






Admin :-



This is Home page for the Admin; here admin can access all other pages. They also get the list of the Tables in this page.


 Manage Admin:


Here administrator can manage admin details like insert, update or delete admin user.

 Manage Employee:


Here administrator can manage employee details like insert, update or delete employee user.

 Manage Company:


Here administrator can manage company details like insert, update or delete company user.

 Manage Feedback:


 Here administrator can manage feedback details like view or delete user’s feedback .

 Manage Vacancy:


 Here administrator can manage vacancy details like view or delete company vacancy.

Manage News:


Here administrator can manage new’s details like insert, update or delete news.

 Manage Advertisement:


Here administrator can manage advertisement details like insert, update or delete advertisement.

 Manage Apply Job:


Here administrator can manage apply Job details like view or delete apply job information.


Following are the table of online Job Portal



  1. Admin_login

  1. employee registration

  1. advertisement_info

  1. company_registration

  1. apply_job

  1. feed_back

  1. news_info

  1. vacancy_info

Online job portal project In Asp.Net C# With Source Code
HOME PAGE
<%@ Page Title="" Language="C#" MasterPageFile="~/User.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

    



<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
   <link href="Style.css" rel="stylesheet" type="text/css" />

    <link rel="stylesheet" type="text/css" href="engine1/style.css" media="screen" />
<style type="text/css">a#vlb{display:none}</style>
<script type="text/javascript" src="engine1/jquery.js"></script>
    <style type="text/css">
        .style1
        {
            width: 100px;
        }
        .style2
        {
            width: 4px;
        }
        .style3
        {
            width: 100%;
        }
        .style4
        {
            width: 75px;
        }
        .style5
        {
            font-family: "Arial Rounded MT Bold";
            font-size: x-small;
            color: #006666;
        }
        .style6
        {
            height: 42px;
        }
    </style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
   <div id="right">   
    <div id="wowslider-container1">
    <div class="ws_images">
        <a href="#"><img src="data1/images/1.jpg" alt="Facebook-Profile-Background"  id="wows0"/></a>
        <a href="#"><img src="data1/images/2.jpg" alt="JOBSEARCH-SLIDER1"  id="wows1"/></a>
        <a href="#"><img src="data1/images/3.jpg" alt="online-job-re"  id="wows2"/></a>
</div>
<div class="ws_bullets"><div>
        <a href="#wows0" title="Facebook-Profile-Background"><img src="data1/tooltips/1.jpg" alt="Facebook-Profile-Background"/>1</a>
        <a href="#wows1" title="JOBSEARCH-SLIDER1"><img src="data1/tooltips/2.jpg" alt="JOBSEARCH-SLIDER1"/>2</a>
        <a href="#wows2" title="online-job-re"><img src="data1/tooltips/3.jpg" alt="online-job-re"/>3</a>
</div></div>

<div class="ws_shadow"></div></div><marquee >WELCOME TO RAJKOT JOB PORTAL</marquee>
    </div>
<script type="text/javascript" src="engine1/script.js"></script>
 
</asp:Content>


Online job portal project In Asp.Net C# With Source Code
USER SIDE


Online job portal project In Asp.Net C# With Source Code
Company Side



Online job portal project In Asp.Net C# With Source Code
Admin Side



No comments:

Post a Comment

Generate Even Numbers in a Range In PHP.

$start = 1; $end = 20; for ($i = $start; $i <= $end; $i++) {     if ($i % 2 == 0) {         echo $i . " is even.<br>";   ...