graphical display

  • Thread starter Thread starter bazzer
  • Start date Start date
B

bazzer

im doing an ASP.NET web application for booking cinema tickets online.
for one part of it i need to show a graphical display(very very basic)
of seats in a particular screen of the cinema. it would need to show
seats that are already booked and, also, allow seats to be
selected(booked) by clicking on them. when they are selected they
should also give the option of allowing user select between an adult or
child price. i was thinking of maybe using multiple check boxes, each
check box representing a seat. could anyone suggest a better idea of
how i mite go about this?
 
How about a bunch of Image or ImageButton controls, each displaying an image
of a seat. The seat would change colors and/or images when clicked to
represent whether it is booked & whether it is for an adult or child.

You could add a rollover effect to those controls with the code in the
second section of this article:
http://SteveOrr.net/articles/InheritAndExtend.aspx
 
Back
Top