OKi Ive got really far now Ive basically made the tables and grid view to display all the results, and Ive made the GUI by using image map making a simple image of cinema seat plan and adding rectangular hotspots then giving the post back value to display the seat number.
I want to add a color to when ever the user moves the mouse over the hotspot like a inactive world map kinda thing. Ive found this jQuery plugin called mapster:
http://www.outsharked.com/imagemapster/
how I have no I idea how to implement it into my coding. How to add the plugin to Visual Studio and how do I use the tags extra.
Also the last final thing I need to do is when the user clicks on the seat hotspot it displays the message in a label I want the message to display in a message box that come up my code currently is:
PHP Code:
protected void ImageMap1_Click(object sender, ImageMapEventArgs e)
{
Label1.Text = ("YOU CAN DO IT!!! Well done you have booked") + e.PostBackValue.ToString();
}