Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / HTML

Ticket Booking

4.41/5 (9 votes)
8 May 2014CPOL 110.3K   10.8K  
Online Ticket Booking Application that allows a user to view booked seats

Ticket Booking

Introduction

Online Ticket Booking process is one of the major aspects of the modern world.

This is a simple ticket booking system I have developed for .NET programmer who wants to see a booked ticket information. Using this system, you will learn how to make a simple ticket book application which allows the user to view booked and available seat for the particular user.

Background

The basic idea before developing the script is to allow the user to check information about seat availability.

Using the Code

Create Database (TicketBooking)

Create table in SQL Server:

SQL
CREATE TABLE  BookedTickets
(
    id int IDENTITY (1,1) NOT NULL,
    SeatNo nchar (10) NULL,
    Status bit NULL
); 

Insert some data into the BookedTicket table.

SQL
INSERT INTO BookedTickets(SeatNo,Status) VALUES ('A13','True');
INSERT INTO BookedTickets(SeatNo,Status) VALUES ('A14','True');  

Code

Now select Seat Number from the BookedTickets table:

SQL
string query = @"SELECT SeatNo FROM BookedTickets WHERE (Status='True')";
SqlDataAdapter  adapter = new SqlDataAdapter(query, con);
DataTable dt = new DataTable();
adapter.Fill(dt);
for(int i = 0; i < dt.Rows.Count; i++)
{
       getSeat = getSeat + "" + dt.Rows[i][0].ToString().Trim() + " ";
}

Check whether seat is booked / available and generate seat:

SQL
protected string checkSeat(string sitting)
{
  try
  {
    string [] words = getSeat.Split(' ');
    foreach (string word in words)
    {
     try
     {
      if (sitting.Equals(word))
      {
        chair = "<img id='" + sitting + "'
        alt='Booked' src='images/chair/R_chair.gif'/>";
        return chair;
      }
      else
          chair = "<img id='" + sitting + "'
          alt='Unbooked' onclick=\"seat('" + sitting +"')\"
          src='images/chair/G_chair.gif' style='cursor:pointer;'/>";
      }
      catch (ArgumentOutOfRangeException) { }
     }
   }
   catch (NullReferenceException)
   {
      chair = "<img id='" + sitting + "' alt='Unbooked'
      onclick=\"seat('" + sitting + "')\"
      src='images/chair/G_chair.gif' style='cursor:pointer;'/>";
   }
    return chair;
 }
Andan H M

Andan H M
M Tech (CSE)
Amrita School of Engineering,Bangalore
IndiaAndan H M (INDIA)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)