Users Pricing

articles

home / developersection / articles / image control in asp.net

Image Control in ASP.Net

Pushpendra Singh 6242 15 Oct 2010 Updated 04 Mar 2020

The Image control is used to display an image.

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

 

Image Control in ASP.Net

 

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