An image button and the GET method

  • Thread starter Thread starter Joachim
  • Start date Start date
J

Joachim

I can't understand why all available tutorials uses ordinary buttons (no
custom images) to show how it's possible to send information back to the
server with ASP.NET. This is all I want to do (or rather have explained how
it works): I have an image (no button, just an image that works like a
button!). When the user presses this image, I want to pass the execution
back to the server and do something witht the parameters I passed along
(e.g. redirect the user to a new page, showing some data retrieved from the
database), i.e I'm using the GET method. Unlike many of the tutorials, I
will not have hundreds of forms and buttons :) Just a plain image, and I
want to view and parse the parameters.

Thanks.
 
why not just use an ImageButton, it's basically a server side, clickable
image that acts like a button.
 
Back
Top