Home > Archive > ASP .NET > March 2006 > graphical display
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| bazzer 2006-03-31, 7:03 pm |
| 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?
| |
|
| http://www.codeproject.com/aspnet/sharpmap1.asp
"bazzer" <somersbar@yahoo.com> wrote in message
news:1143819154.034501.148640@v46g2000cwv.googlegroups.com...
> 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?
>
| |
| Steve C. Orr [MVP, MCSD] 2006-03-31, 7:03 pm |
| 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
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"bazzer" <somersbar@yahoo.com> wrote in message
news:1143819154.034501.148640@v46g2000cwv.googlegroups.com...
> 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?
>
|
|
|
|
|