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

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » ASP.net Controls » LinkButton 
3.10.3.Image button, link button and button
<%@ 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.