LinkButton Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the LinkButton class.
public:
LinkButton();
public LinkButton ();
Public Sub New ()
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>
<%@ Page Language="VB" 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="VB" runat="server">
Sub Button_Click(Sender As Object, e As EventArgs)
Dim myLinkButton As New LinkButton()
myLinkButton.Text = "This is a new LinkButton!"
Page.Form.Controls.Add(myLinkButton)
End Sub
</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
See also
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.