AttributeCollection.Item[String] Propiedad

Definición

Obtiene o establece un valor de atributo especificado para un control de servidor.

public:
 property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); void set(System::String ^ key, System::String ^ value); };
public string this[string key] { get; set; }
member this.Item(string) : string with get, set
Default Public Property Item(key As String) As String

Parámetros

key
String

Ubicación del atributo en la colección.

Valor de propiedad

String

Valor del atributo.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer un atributo HTML onblur dinámico para ejecutar un comando ECMAScript (JavaScript) cuando un TextBox control de servidor web pierde el foco.

<!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 runat="server">
    <title>Attributes Property of a Web Control</title>
<script language="c#" runat="server">

       void Page_Load(Object sender, EventArgs e) {
          TextBox1.Attributes["onblur"]="javascript:alert('Hello! Focus lost from text box!!');";    
       }
   </script>

</head>
<body>
   <h3>Attributes Property of a Web Control</h3>
<form id="form1" runat="server">

   <asp:TextBox id="TextBox1" columns="54" 
    Text="Click here and then tab out of this text box" 
    runat="server"/>  

</form>
</body>
</html>
   
<!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 runat="server">
    <title>Attributes Property of a Web Control</title>
<script language="vb" runat="server">

       Sub Page_Load(sender As Object, e As EventArgs)
          TextBox1.Attributes("onblur")="javascript:alert('Hello! Focus lost from text box!!');"   
       End Sub
   </script>

</head>
<body>
   <h3>Attributes Property of a Web Control</h3>
<form id="form1" runat="server">

   <asp:TextBox id="TextBox1" columns="54" 
    Text="Click here and then tab out of this text box" 
    runat="server"/>  

</form>
</body>
</html>
   

Comentarios

Puede agregar o recuperar uno de un control de servidor ASP.NET que use esta propiedad.

Se aplica a

Consulte también