Airline Reservation Systems A

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Airline Reservation Systems a .

Net
Project With Code
October 27, 2011 by Projects Helper

Airline reservation system project


or air ticketing system is a computer science final year project which is
developed in .Net platform.Students interested in this project can download
information given below.
1.Project code
AboutUs.aspx

Add a flight.aspx

AIRLINE SCHEDULE.aspx

Available seats.aspx

avseats.aspx

canreq.aspx

FARE TARIFFS.aspx
2.Database
This folder covers documents which contain code and database table
details.
3.Documentation.
You can download documents like abstract document,Final
document,paper presentation and print
documentation.

Explanation about the project.


This projects main idea is to implement a online web application for air ticket
booking,flight scheduling,ticket reservation and details of different airlines
fare. In order to implement these features application is developed in to three
modules. This application uses inventory data importing system which is
maintained using scheduled distributing system.

Source Code
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class home : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Type"] != null)
{
if (Session["Type"].ToString() == "admin")
{
Panel1.Visible = true;
Panel2.Visible = false;
Panel3.Visible = false;
}
else
{
Panel1.Visible = false;
Panel2.Visible = true;
Panel3.Visible = false;
}
}

else
{
Panel1.Visible = false;
Panel2.Visible = false;
Panel3.Visible = true;
}
}
protected void Menu2_MenuItemClick(object sender, MenuEventArgs e)
{
}
protected void Menu2_MenuItemClick1(object sender, MenuEventArgs e)
{
}
protected void LinkButton1_Click(object sender, EventArgs e)
{
Session.RemoveAll();
Response.Redirect("login.aspx");
}
}

MODULES:
Registration module
2.
Administrative module
3.
Passenger module
1. Registration module.
1.

This module provides login facility for every user who what to use online
reservation facility. Initially user should log in to the account to get a unique
username and password and then follow online reservation application
features.
2. Administrative module.
This modules main features is to update information on flight details
,reservation information in regular intervals. These are the major features
available in this module.

Create and maintain airline schedule, fare and timings of the Flight.

View the passenger list.

View the available seats in the flights.

Cancel the tickets.

Updating the flight schedule and timings and fare.


3. Passenger module

As users get there username and password they can log in to there own pages,
from there they can view use site features.This module includes these features.
View all airline schedules, timings, fare details and seats availability.

Book for the tickets.

View and cancelling of the ticket.

Send feedback.
download Project Report, project Code and paper presentation of
CSE Airline Reservation System A .Net Project .

You might also like