---
title: "Image Control in ASP.Net"  
description: "The Image control is used to display an image.  ToolTip is an important property in image server control. When mouse will go over the image then Text"  
author: "Pushpendra Singh"  
published: 2010-10-15  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/168/image-control-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Image Control in ASP.Net

The [Image control](https://www.mindstick.com/forum/95341/how-can-use-upload-image-control-in-asp-dot-net) is used to display an image.\

```
<asp:Image ID="Image1" runat="server" ImageUrl="~/asp-net.jpg" />
```

![Image Control in ASP.Net](https://www.mindstick.com/mindstickarticle/edafb994-74a6-44d9-8e30-34e6af2ad033/images/e965979c-825f-4970-9185-f34b5e7d2bfe.png)

ToolTip is an important property in image server control. When mouse will go over the image then Text will be displayed which I have written in ToolTip.

```
<asp:Image ID="Image1" runat="server" ImageUrl="~/asp-net.jpg" ToolTip="WELCOME ASP.NET " />
```

![Image Control in ASP.Net](https://www.mindstick.com/mindstickarticle/edafb994-74a6-44d9-8e30-34e6af2ad033/images/bcf1fadb-a849-4f46-aa90-35e180c63bbf.png)

---

Original Source: https://www.mindstick.com/articles/168/image-control-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
