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



Wednesday, March 21, 2018

Java Example Of Moving Circle

import java.applet.*;
import java.awt.*;
import java.awt.color.*;
/*<applet code="movinovel.class" width=400 height=200>
 * </applet>
 * */

public class movingovel extends Applet implements Runnable
{
Thread t;
int x=0;
int y=0;
public void start()
{
t=new Thread(this);
t.start();
}
public void paint(Graphics g)
{
setSize(2000,2000);
g.fillOval(x,10,100,100);
}
public void run()
{
try
{
for(;;)
{
for(;;)
{
if(y==360)
{
y=0;
break;
}
else
{
x=x+20;
y=y+20;
Thread.sleep(200);
repaint();
}
}
for(;;)
{
if(y==360)
{
y=0;
break;
}
else
{
x=x-20;
y=y+20;
Thread.sleep(200);
repaint();
}
}
run();
}
}
catch(InterruptedException e)
{

}
}

}

How Change Background Color Using Checkbox In Java

package abcde;
import java.applet.*;
import java.awt.Checkbox;
import java.awt.CheckboxGroup;
import java.awt.Color;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Label;
import java.awt.event.*;

import javax.swing.*;

public class rgbcolor extends Applet implements  ItemListener
{
Checkbox a1,a2,a3;
public void init()
{
a1=new Checkbox("RED");
a2=new Checkbox("GREEN");
a3=new Checkbox("BLUE");
a1.addItemListener((ItemListener)this);
a2.addItemListener((ItemListener)this);
a3.addItemListener((ItemListener)this);
add(a1);
add(a2);
add(a3);
}
public void itemStateChanged(ItemEvent IE)
{
if("RED".equals(IE.getItem()))
{
this.setBackground(Color.red);
}
else if ("GREEN".equals(IE.getItem()))
{
this.setBackground(Color.green);
}
else
{
this.setBackground(Color.blue);
}

}
}


Tuesday, March 20, 2018

List Of All Basic Html Tags


<!--...--> Defines a comment  
<!DOCTYPE>  Defines the document type
 <a> Defines an anchor
 <abbr> Defines an abbreviation  
<b> Defines bold text  
<base /> Specifies the base URL/target for all relative URLs in a document  
<basefont /> Deprecated. Specifies a default color, size, or font for all the text in a document TF
<big> Defines big text  
<blockquote> Defines a long quotation  
<body> Defines the document's body  
<br /> Defines a single line break  
<button> Defines a clickable button  
<caption> Defines a table caption  
<center> Deprecated. Defines centered text TF
<cite> Defines a citation  
<code> Defines a piece of computer code  
<dd> Defines a description of an item in a definition list  
<del> Defines text that has been deleted from a document  
<dir> Deprecated. Defines a directory list TF
<div> Defines a section in a document  
<dl> Defines a definition list  
<dt> Defines a term (an item) in a definition list  
<em> Defines emphasized text   
<fieldset> Groups related elements in a form  
<font> Deprecated. Defines font, color, and size for text TF
<form> Defines an HTML form for user input  
<frame /> Defines a window (a frame) in a frameset F
<frameset> Defines a set of frames F
<h1> to <h6> Defines HTML headings  
<head> Defines information about the document  
<hr /> Defines a horizontal line  
<html> Defines the root of an HTML document  
<i> Defines italic text  
<iframe> Defines an inline frame TF
<img /> Defines an image  
<input /> Defines an input control  
<label> Defines a label for an <input> element  
<legend> Defines a caption for a <fieldset> element  
<li> Defines a list item  
<link /> Defines the relationship between a document and an external resource  
<map> Defines a client-side image-map   
<menu> Deprecated. Defines a menu list TF
<meta /> Defines metadata about an HTML document  
<noframes> Defines an alternate content for users that do not support frames TF
<noscript> Defines an alternate content for users that do not support client-side scripts  
<object> Defines an embedded object  
<ol> Defines an ordered list  
<optgroup> Defines a group of related options in a drop-down list  
<option> Defines an option in a drop-down list  
<p> Defines a paragraph  
<param /> Defines a parameter for an object  
<pre> Defines preformatted text  
<q> Defines a short quotation  
<s> Deprecated. Defines strikethrough text TF
<script> Defines a client-side script
<select> Defines a drop-down list  
<small> Defines smaller text  
<span> Defines a section in a document  
<strike> Deprecated. Defines strikethrough text TF
<strong> Defines strong text  
<style> Defines style information for a document  
<sub> Defines subscripted text  
<sup> Defines superscripted text  
<table> Defines a table  
<tbody> Groups the body content in a table  
<td> Defines a cell in a table  
<textarea> Defines a multiline input control (text area)  
<tfoot> Groups the footer content in a table  
<th> Defines a header cell in a table  
<thead> Groups the header content in a table  
<title> Defines a title for the document  
<tr> Defines a row in a table  
<tt> Defines teletype text  
<u> Deprecated. Defines underlined text TF
<ul> Defines an unordered list

Monday, March 19, 2018

What is AJAX.


AJAX:

AJAX stands for Asynchronous JavaScript and XML.
AJAX is a way to exchange data with a server using JavaScript;
this allows updating parts of a web page instead of reloading a whole new page.
Example applications using AJAX includes Google Maps, Gmail, Google Docs.

History:

In 1999, XMLHttpRequest was introduced in IE and other browsers.
In 2005, Jesse James Garrett coined the term “AJAX” to describe how the following technologies are incorporated using JavaScript.
  • HTML and CSS for the structure and presentation
  • The Document Object Model (DOM) for dynamic changes
  • XML (and JSON) for the data exchange
  • The XMLHttpRequest object for asynchronous communication

Types of SQL Server Backups



Overview
SQL Server offers many options for  creating backups.  In a previous topic, Recovery Models, we discussed what types of backups can be performed based on the recovery model of the database.  In this section we will talk about each of these backup options and how to perform these backups using SSMS and T-SQL.
Explanation
The different types of backups that you can create are as follows:

Sunday, March 18, 2018

How To Restore Database Using Enterprise Manager in SQL Server 2012


Steps to restore database backup using Enterprise Manager in SQL Server 2012 

Step 1: Start SQL Server 2012:

Step 2: Expand the database and select database => right-click on selected database => now click on Task => then click on Restore =>  then click on database:

Step 3:  The Restore dialog box appears to restore the database backup:

Step 4: Now verify the database or select a different database in database list box for the destination database:

Step 5: Now specify the source of the database and the date and time of the database; to choose the date of the database click on Timeline:

Step 6: A new dialog box appears. There are two options for choosing the backup database. One is for the last backup taken and the second is a specific data and time. Choose the one appropriate for you then click on the "OK" Button:

Step 7: Now click on File. Here we can reallocate all files to folder:

Step 8: After that, click on Options; it provides many options like store options, tail log backup before restore, server connection and prompt:

Step 9: Now click on the ok button to restore the database:

Step 10: Now we receive a massage that the database is restored successfully:

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>";   ...