LinkButton Constructor

Definition

Initializes a new instance of the LinkButton class.

public LinkButton ();

Examples

The following example illustrates how to create and initialize a new instance of the LinkButton control.

<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>LinkButton Example</title>
<script language="C#" runat="server">
 
      void Button_Click(Object Sender, EventArgs e) 
      {
         LinkButton myLinkButton = new LinkButton();
         myLinkButton.Text = "This is a new LinkButton!";
         Page.Form.Controls.Add(myLinkButton);
      }
 
     </script>
 
</head>
<body>
 
   <form id="form1" runat="server">

      <h3>LinkButton Example</h3>
 
      <asp:Button id="Button1" 
           Text="Create and Show a LinkButton" 
           OnClick="Button_Click" 
           runat="server"/>
 
   </form>

</body>
</html>

Remarks

Use this constructor to create and initialize a new instance of the LinkButton control.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also