---
title: "ImageButton in ASP.Net"  
description: "The ImageButton control is used to display a clickable image. And has the same functionality as a Button control.  It has same event as in Button but"  
author: "Pushpendra Singh"  
published: 2010-10-12  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/161/imagebutton-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# ImageButton in ASP.Net

The [ImageButton](https://www.mindstick.com/articles/12753/imagebutton-in-android) control is used to display a clickable [image](https://www.mindstick.com/articles/23551/an-investigate-distinctive-seafood-restaurant-for-your-image-stamp-character). And has the same [functionality](https://www.mindstick.com/blog/136/using-watermark-functionality-in-textbox-by-jquery) as a [Button control](https://www.mindstick.com/articles/290/button-control-in-vb-dot-net).\

```
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/asp-net.jpg"Width="91px"/>
```

![ImageButton Control in ASP.Net](https://www.mindstick.com/mindstickarticle/8e018bcf-7bec-4414-bb92-c0b454a9dcab/images/16743609-4338-4f91-b18f-d9a3344b929b.png)

It has same event as in Button but having different properties

## Properties

| ## Property | ## Description |
| --- | --- |
| Image url | The url of the image |

**When you click on a imagebutton then click event will fire.**

You can provide an event handler for the Click event to programmatically control the actions performed when the image button is clicked.

```
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />protected void Button1_Click(object sender, EventArgs e)    {         Label1.Text = "Hello";    }
```

Here, when you click theimage Button then it will display message “Hello” in Label1

![ImageButton Control in ASP.Net](https://www.mindstick.com/mindstickarticle/8e018bcf-7bec-4414-bb92-c0b454a9dcab/images/41a2f093-bb61-4e51-95cd-0a90a202ca48.png)

---

Original Source: https://www.mindstick.com/articles/161/imagebutton-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
