ImageButton
ImageButton Example
Click anywhere on the image.
@inherits ControlComponent
<p>Click anywhere on the image.</p>
<asp.ImageButton ImageAlign="ImageAlign.Left" ImageUrl="img/workplace.jpg"
OnClick="this.ImageButton_Click" />
<br />
<br />
<asp.Label @ref="this.label" />
@code {
private Label label;
protected void ImageButton_Click(object sender, ImageClickEventArgs e)
{
label.Text = "You clicked the ImageButton control at the coordinates: (" +
e.X.ToString() + ", " + e.Y.ToString() + ")";
}
}
ImageButton Metadata
Name | Type | Kind |
---|---|---|
AccessKey | String | Parameter |
AlternateText | String | Parameter |
Attributes | IReadOnlyDictionary | Parameter |
BackColor | String | Parameter |
BorderColor | String | Parameter |
BorderStyle | BorderStyle | Parameter |
BorderWidth | String | Parameter |
CausesValidation | Boolean | Parameter |
ClientIDMode | ClientIDMode | Parameter |
CommandArgument | String | Parameter |
CommandName | String | Parameter |
CssClass | String | Parameter |
DescriptionUrl | String | Parameter |
Enabled | Boolean | Parameter |
ForeColor | String | Parameter |
Height | String | Parameter |
ID | String | Parameter |
ImageAlign | ImageAlign | Parameter |
ImageUrl | String | Parameter |
OnClientClick | String | Parameter |
Style | String | Parameter |
TabIndex | Int16 | Parameter |
ToolTip | String | Parameter |
ValidationGroup | String | Parameter |
Visible | Boolean | Parameter |
Width | String | Parameter |
OnClick | ImageClickEventHandler | Event |
OnCommand | CommandEventHandler | Event |
OnDataBinding | EventHandler | Event |
OnDisposed | EventHandler | Event |
OnInit | EventHandler | Event |
OnLoad | EventHandler | Event |
OnPreRender | EventHandler | Event |
OnUnload | EventHandler | Event |