HtmlInputImage Class
Assembly: System.Web (in system.web.dll)
Use the HtmlInputImage control to create a button that displays an image. You can programmatically control the action associated with the HtmlInputImage control by providing an event handler for the ServerClick event.
The coordinates where the user clicks an HtmlInputImage control can be determined by using the ImageClickEventArgs.X and ImageClickEventArgs.Y properties of the System.Web.UI.ImageClickEventArgs object that is passed as a parameter to the user-defined event handler.
For a list of initial property values for an instance of HtmlInputImage, see the HtmlInputImage constructor.
The following code example demonstrates how to use the HtmlInputImage control to create a button that displays an image.
Note |
|---|
| You must provide your own image files for this example to work correctly. |
<%@ Page Language="C#" AutoEventWireup="true" %> <html> <script runat="server"> protected void SubmitBtn_Click(object sender, ImageClickEventArgs e) { Message.InnerHtml = "The Submit button was clicked."; } protected void ClearBtn_Click(object sender, ImageClickEventArgs e) { Message.InnerHtml = "The Clear button was clicked."; } </script> <body> <h3>HtmlInputImage Example</h3> <form runat="server"> <input type="image" alt="Submit button" src="Submit.jpg" OnServerClick="SubmitBtn_Click" runat="server" id="Image1"> <input type="image" alt="Clear button" src="Clear.jpg" OnServerClick="ClearBtn_Click" runat=server id="Image2"> <h1> <span id="Message" runat="server"> </span> </h1> </form> </body> </html>
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
System.Web.UI.Control
System.Web.UI.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlInputControl
System.Web.UI.HtmlControls.HtmlInputImage
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note