Please visit our sponsors !
ImageButton Control
Definition and Usage
The ImageButton control is used to display a clickable image.
Properties
Property |
Description |
CausesValidation |
By default, a page is validated when a Button control is
clicked. To prevent a page from being validated when clicking on a Button
control, set this property to "false" |
Command |
The command associated with the Command event |
CommandArgument |
Additional information about the command to perform |
id |
A unique id for the control |
ImageUrl |
The URL of the image to display |
OnClick |
The name of the function to be executed when the image is clicked |
runat |
Specifies that the control is a server control. Must
be set to "server" |
Example 1
In the following example we declare one ImageButton
control and one Label control in an .aspx file. When the user clicks on the image, the image_Click subroutine is executed. The
subroutine sends the message "Coordinates: " and the x and y
coordinates of the click to the Label control:
<script runat="server">
Sub image_Click(sender As Object, e As ImageClickEventArgs)
mess.Text="Coordinates: (" & e.X & ", " & e.Y & ")"
End Sub
</script>
<html>
<body>
<form runat="server">
<h3>Click on the image:</h3>
<asp:ImageButton id="image1" runat="server"
ImageUrl="..\images\smiley.gif"
OnClick="image_Click"/>
<br /><br />
<asp:label id="mess" runat="server"/>
</form>
</body>
</html>
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|