User-225480610 posted
With ASP.NET 2, you can use the mobile:Command control and specify the ImageUrl property. This will cause the command button to be rendered as an image instead of a button. When the image is clicked, you should get a postback and can change the
label contents.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="example.aspx.cs" Inherits="Example" %>
<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:Form id="Form1" runat="server">
<mobile:Command ID="Command1" Runat="server" ImageUrl="~/floppy_disk.gif"></mobile:Command>
</mobile:Form>
</body>
</html>