Image button, link button and button : LinkButton « ASP.net Controls « ASP.NET Tutorial






<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="ButtonTest" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Button Controls</title>
</head>
<body>
    <form id="form1" runat="server">
        <div id="container">
            <asp:ImageButton ID="imgbtnTest" 
                             runat="server" 
                             ImageUrl="images/navigation.gif" 
                             AlternateText="Navigation Menu"
                             OnClick="imgbtnTest_Click" /><br />
            <asp:Label ID="labMessage1" runat="server"></asp:Label>
            <asp:Button ID="btnTest" 
                        runat="server" 
                        Text="Click Me" 
                        OnClick="btnTest_Click" /><br />
            <asp:Label ID="labMessage2" runat="server"></asp:Label>
            <asp:LinkButton ID="lnkbtnTest" 
                            runat="server" 
                            OnClick="lnkbtnTest_Click">
                          Link to click
            </asp:LinkButton><br />
            <asp:Label ID="labMessage3" runat="server"></asp:Label>
        </div>
    </form>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class ButtonTest : System.Web.UI.Page
{

  protected void imgbtnTest_Click(object sender, ImageClickEventArgs e)
  {
    labMessage1.Text = "ImageButton Clicked Coordinates: " + e.X.ToString() + ", " + e.Y.ToString();
  }

  protected void btnTest_Click(object sender, EventArgs e)
  {
    labMessage2.Text = "Button was clicked";
  }
  protected void lnkbtnTest_Click(object sender, EventArgs e)
  {
    labMessage3.Text = "LinkButton was clicked";
  }

}








3.10.LinkButton
3.10.1.Important properties, events and methods of LinkButton control
3.10.2.Using the LinkButton Control
3.10.3.Image button, link button and button