Click here to Skip to main content
15,894,646 members
Articles / Web Development / HTML
Tip/Trick

Ticket Booking

Rate me:
Please Sign up or sign in to vote.
4.41/5 (9 votes)
8 May 2014CPOL 109.1K   10.8K   20   3
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)


Written By
Software Developer Tiger Innovations
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionTicket booking Pin
M SANAL KUMAR1-Feb-20 23:36
M SANAL KUMAR1-Feb-20 23:36 
Questionwhen i clicked on project it shows error Pin
Member 1342623023-Sep-17 20:30
Member 1342623023-Sep-17 20:30 
QuestionI need help please Pin
RollaDes5-Sep-17 21:23
RollaDes5-Sep-17 21:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.