Label Constructor

Definición

Inicializa una nueva instancia de la clase Label.

public:
 Label();
public Label ();
Public Sub New ()

Ejemplos

En el ejemplo siguiente se muestra cómo crear e inicializar una nueva instancia del Label control .

Nota:

En el ejemplo de código siguiente se usa el modelo de código de un solo archivo y es posible que no funcione correctamente si se copia directamente en un archivo de código subyacente. Este ejemplo de código debe copiarse en un archivo de texto vacío que tenga una extensión .aspx. Para obtener más información sobre el modelo de código de Web Forms, vea modelo de código de página ASP.NET Web Forms.

<%@ 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>Label Example</title>
<script language="C#" runat="server">

      void Button1_Click(Object Sender, EventArgs e) 
      {
         Label myLabel = new Label();
         myLabel.Text = "This is a new Label";    
         Page.Controls.Add(myLabel);
      }

   </script>
 
</head>
<body>

   <form id="form1" runat="server">

      <h3>Label Example</h3>
 
      <asp:Button id="Button1" 
           Text="Create and Show a Label" 
           OnClick="Button1_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>Label Example</title>
<script language="VB" runat="server">

      Sub Button1_Click(Sender As Object, e As EventArgs)
         Dim myLabel As New Label()
         myLabel.Text = "This is a new Label"
         Page.Controls.Add(myLabel)
      End Sub

   </script>
 
</head>
<body>

   <form id="form1" runat="server">

      <h3>Label Example</h3>
 
      <asp:Button id="Button1" 
           Text="Create and Show a Label" 
           OnClick="Button1_Click" 
           runat="server"/>
 
   </form>
</body>
</html>

Comentarios

Use este constructor para crear e inicializar una nueva instancia de la Label clase .

Se aplica a